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() ) { ?> @@##@@" alt="" title="<?php echo short_title('...', 5); ?>" /></span> <? }else{?> @@##@@/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>
全网最新最细最实用WPS零基础入门到精通全套教程!带你真正掌握WPS办公! 内含Excel基础操作、函数设计、数据透视表等
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号