WordPressに投稿した文章にいちいちリンクを貼るのは面倒な作業なので、
『リンクを付けたい文字』を『@リンクを付けたい文字』として記述することで、
自動的にリンクをつけるようにfunctions.phpに追記したいと思います。
function replaceText($text){
$replace = array(
'@検索文字' => '<a href="#">置換後文字</a>',
);
$text = str_replace(array_keys($replace), $replace, $text);
return $text;
}
add_filter('the_content', 'replaceText');
とすることで、自動的にリンクをつけることが出来ます。