1
我有一個功能,會自動添加在我的標題的跨度,這樣我可以樣式的跨度,如:WordPress的高級自定義字段get_content
<h2><span>my heading</span></h2>
這在我的正常的WordPress含量正常,但中的內容高級自定義字段將其刪除。有沒有人有任何想法 - 花了數小時搜索。
//add span into each title so can add flourish under span
add_filter('the_content', 'replace_content',1);
function replace_content($content) {
$content = preg_replace('/<h(\d{1,6})(.*?)>(.*?)<\/h(\d{1,6}).*?>/', '<h$1><span>$3</span></h$4>', $content);
return $content;
}
非常感謝任何人誰可以幫助!