Beiträge von CarmenK

    Huhu allerseits,

    bin ein Wordpress Neuling. Meine Frage lautet: Wie zeige ich den Link zu den Kommentaren auf der index.php an?

    Ich benutze das Lightword-Theme, was ich in den letzten Tagen etwas abgeändert habe. Dabei habe ich den Link zu den Kommentaren aus der index.php herausgenommen.

    Code:

    Nun will ich den Link zu den Kommentaren aber doch anzeigen lassen, doch wenn ich folgenden Code einfüge, wird der Link nicht angezeigt.

    PHP
    <div class="cat_tags clear">
    <span class="category"><?php if($lw_disable_tags == "true" || !get_the_tags()) { _e('Filed under:','lightword'); echo " "; the_category(', ');} else if (get_the_tags() && $lw_disable_tags == "false") { _e('Tagged as:','lightword'); echo " "; the_tags(''); } ?></span>
    <span class="continue"><?php $pos = strpos($post->post_content, '<!--more-->'); if($pos==''){ ?><a class="nr_comm_spot" href="<?php the_permalink(); ?>#comments"><?php if(lightword_fb_get_comment_type_count('comment')==1) _e('1 Comment','lightword'); elseif('open' != $post->comment_status) _e('Comments Off','lightword'); elseif(lightword_fb_get_comment_type_count('comment') == 0) _e('No Comments','lightword'); else echo lightword_fb_get_comment_type_count('comment')." ".__('Comments','lightword'); ?></a><?php }else{ ?><a title="<?php _e('Read more about','lightword'); ?> <?php the_title(); ?>" href="<?php the_permalink() ?>#more-<?php echo $id; ?>"><?php _e('Continue reading','lightword'); ?></a><?php } ?></span><div class="clear"></div>
    </div>
    <div class="cat_tags_close"></div>
    </div>

    Wo liegt das Problem?

    Für jede Hilfe bin ich dankbar.

    MFG