Hey leute ich bins wieder. Ich hab mir diesmal die Mühe gegeben die Rechtschreibung einzuhalten. Ich weis ich bin nicht perfekt. Also kommen wir zum Problem. Ich habe aus der Author.php, die Posts rausgeschnitten. Der code sieht jetzt folgendermaßen aus:
<?php
/*
Template Name: Profil
*/
?>
<?php include (TEMPLATEPATH . '/header2.php'); ?>
<?php get_header(); ?>
<div id="content" class="narrowcolumn">
<!-- This sets the $curauth variable -->
<?php
if(isset($_GET['author_name'])) :
$curauth = get_userdatabylogin($author_name);
else :
$curauth = get_userdata(intval($author));
endif;
?>
<div id="main">
<h2>Über unseren User: <?php echo $curauth->nickname; ?></h2>
Website: <a href="<?php echo $curauth->user_url; ?>"><?php echo $curauth->user_url; ?></a><br/>
Profil: <?php echo $curauth->user_description; ?><br/>
ID: <?php echo $curauth->ID; ?><br/>
<img src="<?php echo cimy_get_thumb_path(get_cimyFieldValue($curauth->ID, 'PROFIL_RESIM')); ?>"alt="Dieser Autor hat noch kein Foto eingestellt." />
<div id="contentwrapper">
<?php if (have_posts()) : ?>
<?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
<?php /* If this is a category archive */ if (is_category()) { ?>
<h2 class="pageTitle"><?php single_cat_title(); ?></h2>
<?php /* If this is a tag archive */ } elseif( is_tag() ) { ?>
<h2 class="pageTitle">Tag: <?php single_tag_title(); ?></h2>
<?php /* If this is a daily archive */ } elseif (is_day()) { ?>
<h2 class="pageTitle">Archive for <?php the_time('F jS, Y'); ?></h2>
<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
<h2 class="pageTitle">Archive for <?php the_time('F, Y'); ?></h2>
<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
<h2 class="pageTitle">Archive for <?php the_time('Y'); ?></h2>
<?php /* If this is an author archive */ } elseif (is_author()) { ?>
<h2 class="pageTitle">Author Archive</h2>
<?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
<h2 class="pageTitle">Blog Archives</h2>
<?php } ?>
<?php endif; ?>
</div> <!-- Closes contentwrapper-->
<div id="comment">
<?php if (function_exists('wp_list_comments')): ?>
<!-- WP 2.7 and above -->
<?php comments_template('', true); ?>
<?php else : ?>
<!-- WP 2.6 and below -->
<?php comments_template(); ?>
<?php endif; ?>
</div> <!-- Closes Comment -->
<?php get_sidebar(); ?>
<div class="cleared"></div>
</div><!-- Closes Main -->
<?php get_footer(); ?>
Alles anzeigen
Natürlich muss ich noch alles zurecht ordnen aba das ist jetzt gerade nicht mein Problem. Das problem ist wie ihr sieht ist dort bei dem <div id=comment> an dieser stelle (<?php if (function_exists('wp_list_comments')): ?>) eine bedingung ich denk mal die muss erfüllt sein, damit die Comment möglichkeit gegeben ist. Ich weis es aber nicht genau ist meine Schlussfolgerung. Habe versucht an dieser Bedingung rumzubasteln aber erfolglos. Da ich keine Posts habe, zeigt er mir auch keine Kommentier Fläche. Wie bekomm ich es hin, ohne Posts die Kommentier möglichkeit zu aktiviern. Damit die User die Profile der Benutzer Kommentiern können, also sowas wie ein Usergästebuch. Habt ihr eine Idee?
Achso bevor ich es vergesse CMS ist Wordpress