我有一个WordPress网站,我的第一页上有一节显示了最近的6篇博文。 我希望在点击标题时在新标签页中打开这些帖子(并且只有那些帖子),即我不想更改整个博客标题属性(或者在其中调用的任何内容) WordPress的)。
我在how-to-open-each-wordpress-post-in-new-tab-window中尝试了答案但是,我找不到像这里引用的代码那样的任何内容(< a href="<?php the_permalink(); ?>"...............><?php the_title(); ?></a>
)。
仅供参考,loop.php有一些我认为会为我的主题做同样事情的东西,但即使添加target="_blank"
之后,也没有变化。以下是我更改的loop.php中的部分:
<?php themify_post_before(); // hook ?>
<article id="post-<?php the_id(); ?>" <?php post_class( 'post clearfix' ); ?>>
<?php themify_post_start(); // hook ?>
<?php if($themify->unlink_title!='yes' || $themify->unlink_image!='yes'):?>
<a href="<?php echo themify_get_featured_image_link(); ?>" data-post-permalink="yes" style="display: none;" target="_blank"></a>
<?php endif;?>
有人可以帮我解决这个问题吗?