傻大憨

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 傻大憨

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

GGD独立站适合哪些类型的企业

GGD独立站适合希望通过Google平台资源快速提升品牌知名度、以B端客户为主、注重数据分析和运营优化的企业。

WordPress外贸网站建设的关键要素与技术要点

  在全球数字化的时代,成功建站是拓展国际业务的关键一环。本文将揭示WordPress外贸网站建设的关键要素与… Continue reading WordPress外贸网站建设的关键要素与技术要点

山东专业的外贸建站公司

鲁大齐Ludaqi.com山东专业的外贸建站公司是一家专注于为企业提供高质量外贸网站建设服务的公司。

河北燕子丹网络营销

河北燕子丹网络营销是一家专注于为企业提供全方位网络营销解决方案的专业服务公司。成立于2018,总部位于河北省保定市,致力于帮助企业在数字化时代提升品牌知名度、扩大市场份额、实现业务增长。

wordpress搭建公司官网有什么优势

WordPress是一个强大而灵活的内容管理系统,广泛用于搭建各种类型的网站,包括企业官网。以下是使用WordPress搭建公司官网的优势以及一些建议。

wordpress建站费用明细

WordPress建站的主要费用包括域名、托管、主题、插件和其他相关费用,如SSL等。‌