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建站服务商,成立于2014年6月11日。

海归创业者喜欢用WordPress搭建公司官网

随着全球化的推进和科技的飞速发展,越来越多的海归创业者选择回国发展,他们不仅带回了丰富的国际经验和资源,也带来… Continue reading 海归创业者喜欢用WordPress搭建公司官网

WordPress网站做海推广需要注意的事项

用WordPress搭建的网站才是真正属于企业自己的网站,重要数据都是掌握在企业手中,网站是否可以正常使用不受制于他人,大大降低数据存储和维护的风险。

给wordpress添加带区块编辑器的文章类型

给wordpress添加带区块编辑器的自定义文章类型

实现wordpress一篇文章只允许同一IP评论一次

让一个IP只能评论一次

SEO模板

选择SEO模板Seomoban.com让您的网站在搜索引擎中获得更高的排名,吸引更多目标流量,实现在线成功。