SOHO创业

wordpress调用随机文章和随机推荐文章

wordpress调用随机文章的代码如下:

<?php
$query = array(
'post_type' => 'post',
'orderby' => 'rand'
);
$posts = new WP_Query( $query );
if ( $posts->have_posts() ) {
while( $posts->have_posts() ) :
$posts->the_post();
the_content();
endwhile;
}
wp_reset_query();
?>

wordpress随机调用置顶推荐的文章代码:

<?php
//获取置顶文章的ID串
$rand_id = get_option( 'sticky_posts' );
$query = array(
'post__in' => $rand_id,
'post_type' => 'post',
'orderyby' => 'rand',
'numberposts' => 2
);
$posts = new WP_Query( $query );
if ( $posts->have_posts() ) {
while( $posts->have_posts() ) :
$posts->the_post();
the_content();
endwhile;
}
wp_reset_query();
?>
Published
Categorized as 建站知识 Tagged ,

By SOHO

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

如何添加wordpress文章形式

wordpress的功能很强,通过文章形式,可以让wordpress文章,有多种形式来展示。并不是所有的主题都有wordpress的文章形式,如果想有文章形式,将以下代码添加到 functions.php文件中即可。

快速搭建wordpress企业网站 就用WP快主题

快速搭建wordpress企业网站就用WP快主题,以下是WP快主题建站的10大优势。

用wordpress搭建海外旅游网站的优势

用WordPress搭建海外旅游网站的优势分析用WordPress搭建海外旅游网站具有许多优势,包括灵活性、易用性、SEO优化、安全性、集成支付系统、用户评论和社交分享、兼容移动设备、日历和预订功能以及社区和用户互动等。

GGD独立站受跨境电商青睐的主要原因

GGD独立站成为更多企业实现品牌出海、业务增长的重要选择,助力企业在全球市场竞争中脱颖而出。

把产品卖到中亚五国有没有必要建外贸独立站?

中亚五国包括哈萨克斯坦、吉尔吉斯斯坦、塔吉克斯坦、乌兹别克斯坦和土库曼斯坦。把产品卖到中亚五国有没有必要建外贸独立站?应该建什么语言的?

wordpress禁用Rest API

将以下代码插入到functions.php文件中即可禁用Rest API