1.可以通过给文章添加自定义字段来实现,在主题的 functions.php 添加下面的代码:(文件地址:网站根目录/wp-content/themes/主题名文件夹/functions.php)
/** * WordPress 文章标题链接到站外链接 */ function link_format_url($link, $post) { if (has_post_format('link', $post) && get_post_meta($post->ID, 'LinkFormatURL', true)) { $link = get_post_meta($post->ID, 'LinkFormatURL', true); } return $link; } add_filter('post_link', 'link_format_url', 10, 2);
新建wordpress文章,在文章末尾的自定义字段里面的名称选择:LinkFormatURL ,值:输入你需要文章标题跳转的url地址,正常发布文章即可实现上述功能。