[WordPress]把繼續閱讀的”Read more…”改成文章名稱

之前有一位網友阿猴很熱心的說要教我
不過在公司都沒有啥時間把我的THEME傳給他改
利用一點時間研究一下自己解決了
the_content_more_link the_content_more_link
有興趣的人可以參考看看…

wp-includes/post-template.php更改

215
216
217
218
219
220
221
222
223
224
	if ( count($content) > 1 ) {
		if ( $more ) {
			$output .= '<span id="more-'.$id.'"></span>'.$content[1];
		} else {
			$output = balanceTags($output);
			if ( ! empty($more_link_text) )
				$output .= apply_filters( 'the_content_more_link', ' <a href="'. get_permalink() . "#more-$id\" class=\"more-link\">$more_link_text</a>", $more_link_text ); 
		}
 
	}

繼續閱讀