傻大憨

wordpress调用同分类随机文章

wordpress调用同分类随机文章代码

<?php

$cat = get_the_category();

foreach($cat as $key=>$category){

$catid = $category->term_id;}

$args = array('orderby' => 'rand','showposts' => 8,'cat' => $catid ); // 显示篇数

$query_posts = new WP_Query();

$query_posts->query($args);

while ($query_posts->have_posts()) : $query_posts->the_post();?>

<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>

<?php endwhile;?>

<?php wp_reset_query(); ?>
Published
Categorized as 建站知识 Tagged

By 傻大憨

shadahan.com是一个关注跨境电商、创业话题的网站。

禁用WordPress中的搜索功能

以下代码可以禁止使用wordpress中的搜索功能

跨境电商如何做好东南亚市场

跨境电商在东南亚市场的成功不仅依赖于对市场需求的准确把握和有效的营销策略,还需要在物流、支付和供应链管理等方面进行全面优化。

外贸B2C独立站与外贸B2B独立站有什么区别

简站wordpress资深运营赵经理认为,在外贸领域中,企业应根据自身业务特点和目标市场需求,选择合适的独立站模式进行搭建和运营。

wordpress主题二次开发时常用到的函数

wordpress常用函数大全

使用wordpress搭建官网好处多于坏处

WordPress搭建官网的好处在多个方面都超过了其坏处,特别是在成本效益、社区支持、SEO性能以及灵活性和可定制性方面。

知识共享署名4.0许可

建网站过程中经常使用到的知识共享署名CC4.0许可,来自署名 4.0 国际官网的具体规定的内容介绍。