WordPress 在侧边栏中发布文本摘录?

发布于 2024-12-02 19:58:55 字数 270 浏览 0 评论 0原文

我很好奇是否有办法将帖子 txt 的摘录输出到侧边栏中,但仅限于该帖子的侧边栏。

我尝试过的是使用 single.php 中的 get_content 循环到我在另一个 DIV 中创建的自定义 sibar 中,但它在侧边栏中显示帖子 txt、评论和图像。

 <div id="Sidebar">
   <?php the_content(); ?>
 </div>

问题:是否有办法在侧边栏中显示帖子文本?

I am curious if there is a way to output an excerpt of the post txt into a sidebar, but only the sidebar for that post.

What I have tried is using the get_content loop in the single.php into a custom sibar that I have created inside another DIV, but it displays the post txt, Comments and images in the sidebar.

 <div id="Sidebar">
   <?php the_content(); ?>
 </div>

Question: Is there anyway to display Post text in the sidebar?

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

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

发布评论

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

评论(1

十年不长 2024-12-09 19:58:55

你可以这样做:

<div id="sidebar">
    <?php 
       the_content();

       //display only on post page 
       if(is_single()){
          the_excerpt();           
       }
</div>

希望有效!

You could do this:

<div id="sidebar">
    <?php 
       the_content();

       //display only on post page 
       if(is_single()){
          the_excerpt();           
       }
</div>

Hope that works!

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