通过号码检索某些帖子?

发布于 2024-11-05 13:00:27 字数 112 浏览 0 评论 0原文

如何通过编号调用某些帖子,将它们作为特色帖子放置在模板的特定位置? 我读过有关置顶帖子的内容,但我大约有 3 个地方可以放置我的特色帖子,我想我需要一个循环来按我定义的编号获取帖子。

有帮助吗?

How can I call certain posts by their number to place them as featured posts in specific places of my template ?
I've read about sticky posts , But I have about 3 places to place my featured posts and I guess I need a loop to get posts by their number I defined.

Any HELP ?!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

想你的星星会说话 2024-11-12 13:00:27
<?php   

// The Query    
$query = new WP_Query( 'p=7' );

// The Loop
while ( $the_query->have_posts() ) : $the_query->the_post();
    echo '<li>';
    the_title();
    echo '</li>';
endwhile;

// Reset Post Data
wp_reset_postdata();
?>
<?php   

// The Query    
$query = new WP_Query( 'p=7' );

// The Loop
while ( $the_query->have_posts() ) : $the_query->the_post();
    echo '<li>';
    the_title();
    echo '</li>';
endwhile;

// Reset Post Data
wp_reset_postdata();
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文