我在嘗試但我無法獲得我需要的。 我驗證我的HTML豐富網頁摘要,我有這樣的代碼:PHP:在href錨文本中追加span標籤
<a href="http://www.xxxx.xxx/xxxxxxx" rel="tag">MY_ANCHOR_TEXT</a>
所以我需要追加的跨度標籤,如:
<a href="http://www.xxxx.xxx/xxxxxxx" rel="tag"><span itemprop="title">MY_ANCHOR_TEXT</span></a>
我在WordPress的是,我有:
$course_category = get_the_term_list($post->ID, 'course-cat', '', '', '');
其中$ course_category包含上面的標籤。
任何幫助真的很感激。 謝謝,丹尼爾
EDIT1:我已經嘗試使用:
$course_category = preg_replace('/<a\shref=\".*\">(.+<\/a>)/', '<a><span itemprop="title">$1</span>', $course_category);
,但我沒有獲得我所需要的
你知道preg_match的PHP嗎? ;) – 2015-04-06 11:36:57
請發佈您迄今爲止已經嘗試爲您的網站完成這項工作? – 2015-04-06 11:37:03
我試圖 $ course_category = preg_replace函數( '/(.+ <\/a>)/', '<跨度itemprop = 「標題」> $ 1',$ course_category) ; – 2015-04-06 11:37:59