WordPress 在侧边栏中发布文本摘录?
我很好奇是否有办法将帖子 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以这样做:
希望有效!
You could do this:
Hope that works!