wordpressのコメントとレコメンドブロックの位置が違うとエラーが発生する
wordpressのsingle.phpページに
おすすめコンテンツセクションを追加したい カテゴリIDを元に類似記事をクエリすることです。
ただし、
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> <?php comments_template(); ?> <?php include_once 'recommend.php';?>
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> <?php include_once 'recommend.php';?> <?php comments_template(); ?>
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> <div id="recommend"> <?php //获取当前分类名 $cat_name = single_cat_title('',false); //获取分类ID $cat_id = get_cat_ID($cat_name); $args=array('cat'=>$cat_id,'showposts'=>5); $my_query = new WP_Query($args); while ($my_query->have_posts()) : $my_query->the_post(); ?> <li> <span> <? if ( has_post_thumbnail() ) { ?> <img src="<?php get_image_url(); ?>" alt="" title="<?php echo short_title('...', 5); ?>" /></span> <? }else{?> <img src="<?php bloginfo('template_directory'); ?>/images/dummy.png" alt="" title="<?php echo short_title('...', 5); ?>" /></span> <? }?> <p><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></p> </li> <?php endwhile; ?> </div> <div class="clear"></div>