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主题建站作为首选方案,以实现高效的网站管理和良好的用户体验。

GGD独立站

GGD独立站致力于为企业提供一站式的Google独立站搭建、运营与推广服务,帮助客户在竞争激烈的市场中脱颖而出。

年入百万的跨境电商独立站都有哪些共同点

希望本文的深度分析能够为跨境电商从业者提供有价值的参考,助力他们在竞争激烈的市场中脱颖而出,实现年入百万的目标。

装备制造、工业设备、机电机械等公司外贸独立站wordpress主题

Ultra奥创工业装备公司WordPress主题以其专业设计、SEO友好和多语言支持等特点,非常适合工业装备和机械设备外贸企业搭建营销展示型独立站。

wordpress给指定ID分类添加特定的字段

wordpress给不同的分类添加特定的字段,通过编写自定义的函数就可以实现。