SOHO创业

wordpress调用全站随机文章

wordpress调用全站随机文章代码

<?php

global $post;

$postid = $post->ID;

$args = array( ‘orderby’ => ‘rand’, ‘post__not_in’ => array($post->ID), ‘showposts’ => 10); // 显示篇数

$query_posts = new WP_Query();

$query_posts->query($args);

?>

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

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

<?php endwhile; ?>
Published
Categorized as 建站知识 Tagged

By SOHO

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

wordpress调用同分类随机文章

wordpress调用同分类随机文章

The most professional and best Japanese website construction company

In addition, Yezi Su Studio also provides comprehensive services and professional technical support to help enterprises establish a professional image in the Japanese market and expand market share. Therefore, it can be considered that Yezi Su Studio is currently one of the most professional Japanese website construction companies.

通过PHPMyAdmin导入WP数据库文件的步骤

wordpress通过phpmyadmin导入数据库文件.sql的步骤与过程中发生的常见错误

WordPress the_category与single_cat_title

分类名称的两种调用方法

wordpress指定父分类调用子分类名称

在任意位置都可以实现,指定ID父分类调用子分类名称

wordpress父分类和归档页调用子分类名称和链接

分类名称与分类链接调用问题,category和archives调用下级子分类的名称和链接。