Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 wordpress 新手,我想创建垂直新闻滚动插件。我需要使新闻标题可点击,点击后它应该显示在另一个页面中,用户可以选择登录和添加评论。如何做到这一点?
将 EveryNews设为锚点(可点击),如下所示:
News
<a href="<?php echo get_permalink($post->ID); ?>">View Details</a>
这会将您重定向到DETAIL相应新闻的页面,即:single.php
DETAIL
single.php
您可以找到新闻主题或使用任何主题,因为您可以创建新闻帖子,当您单击帖子时,它将带您到主帖子阅读文章。