下面是内存溢出 jb51.cc 通过网络收集整理的代码片段。内存溢出小编现在分享给大家,也给大家做个参考。
我们在 wordpress 企业主题开发中,常常会用到相关产品推荐的代码,方便访客根据我们的当前产品页跳转到其它的产品对,增强访客的购买兴趣,那对于那些没有推荐产品功能的 wordpress 主题,怎样添加这样的推荐呢?
下面给大家推荐一个常用的推荐同分类目录下文章的代码方式,只要将下面的代码复制到我们的文章底部,并对应添加好我们的 CSS 样式就可以了,而且里面的参数都是可以设置的,可以自由设置推荐的文章数量和列表形式。
<?PHP
//get the taxonomy terms of custom post type
$customTaxonomyTerms = wp_get_object_terms( $post->ID,'product_category',array('fIElds' => 'IDs') );
//query arguments
$args = array(
'post_type' => 'products',
'post_status' => 'publish',
'posts_per_page' => 4,
'orderby' => 'rand',
'tax_query' => array(
array(
'taxonomy' => 'product_category',
'fIEld' => 'ID',
'terms' => $customTaxonomyTerms
)
),
'post__not_in' => array ($post->ID),
);
//the query
$relatedposts = new WP_query( $args );
//loop through query
if($relatedposts->have_posts()){
echo '<div >';
echo '<h3>' . __('Related Products') . '</h3>';
echo '<ul>';
while($relatedposts->have_posts()){
$relatedposts->the_post();
?>
<li>
<a href="<?PHP the_permalink(); ?>"><?PHP the_post_thumbnail('product_thumb'); ?></a>
<a href="<?PHP the_permalink(); ?>"><?PHP the_Title(); ?></a>
</li>
<?PHP
}
echo '</ul></div>';
}else{
//no posts found
}
//restore original post data
wp_reset_postdata();
?>
以上是内存溢出(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
总结以上是内存溢出为你收集整理的代码实现WordPress主题添加相关产品推荐全部内容,希望文章能够帮你解决代码实现WordPress主题添加相关产品推荐所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)