傻大憨

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是一个关注跨境电商、创业话题的网站。

wordpress禁用Feed

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

专为外贸人打造的高转化率WordPress主题

不论你是初建站的SOHO,还是拥有成熟团队的外贸工厂,TradeTheme都能提供足够的灵活性与稳定性,助你在跨境电商的浪潮中脱颖而出。

wordpress显示相同父分类目录下的所有子分类目录

调用某个父分类下的所有子分类名称

WordPress外贸建站模板选择:关键因素与详细分析

在当今全球化的商业环境中,外贸建站已成为企业拓展国际市场、提升品牌形象、增强竞争力的关键手段。WordPress作为一款功能强大、易于使用的建站平台,受到了众多外贸企业的青睐。

SOHO建站的优势分析

SOHO建站(Small Office/Home Office建站)是指小型办公室或家庭办公室通过建立网站来开展业务。

上海WordPress

上海WordPress致力于成为中小微企业在互联网上的坚强后盾,帮助他们更好地展示自己,吸引更多的客户,实现业务增长。