php WordPress中有缩略图的相关帖子(无插件)#wp #php
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WordPress中有缩略图的相关帖子(无插件)#wp #php相关的知识,希望对你有一定的参考价值。
<?php $orig_post = $post;
global $post;
$categories = get_the_category($post->ID);
if ($categories) {
$category_ids = array();
foreach($categories as $individual_category) $category_ids[] = $individual_category->term_id;
$args=array(
'category__in' => $category_ids,
'post__not_in' => array($post->ID),
'posts_per_page'=> 2, // Number of related posts that will be shown.
'caller_get_posts'=>1
);
$my_query = new wp_query( $args );
if( $my_query->have_posts() ) {
echo '<div id="related_posts"><h3>Related Posts</h3><ul>';
while( $my_query->have_posts() ) {
$my_query->the_post();?>
<li><div class="relatedthumb"><a href="<? the_permalink()?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_post_thumbnail(); ?></a></div>
<div class="relatedcontent">
<h3><a href="<? the_permalink()?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
<?php the_time('M j, Y') ?>
</div>
</li>
<?
}
echo '</ul></div>';
}
}
$post = $orig_post;
wp_reset_query(); ?>
以上是关于php WordPress中有缩略图的相关帖子(无插件)#wp #php的主要内容,如果未能解决你的问题,请参考以下文章
PHP WordPress - 显示带缩略图的子页面
PHP 为Wordpress主题启用帖子缩略图
PHP Wordpress将帖子缩略图添加到RSS源
PHP Wordpress:在RSS Feed中显示帖子缩略图
WordPress-显示带有缩略图的子页面
WordPress 根据分类术语显示相关帖子