在wordpress中打开新页面中的类别帖子

时间:2012-08-07 05:17:57

标签: wordpress wordpress-plugin

  1. 我正在使用标签菜单在侧边栏中显示我的类别帖子。
  2. 我正在使用Read More链接,我希望我的Read More 申请我的每个标签(类别帖子)和点击阅读更多,我 希望我的标签的更多内容在新页面中打开。
  3. 我正在使用的代码 -

        <?php while (have_posts()) : the_post(); ?>
    
        <!-- Do special_cat stuff... -->
    
        <?php the_content('more',TRUE,'');?>
    
        <p align="right" class="txt_caps txt_small txt_bold"><a href="#">&raquo; Read More</a></p>
    
  4. 我不知道在我的href =“#”中使用什么,这样我就可以在点击标签页的新页面中打开我的特定帖子。

  5. 提前致谢。这是我在Wordpress中的第一个直播项目。所以,我对Wordpress有点新鲜。更多细节,你可以问我。

1 个答案:

答案 0 :(得分:1)

使用target="_blank"打开新标签页 在href=""中,只需输入您想要去的位置。