我想在元描述标记中获取分类项,但是在其中添加了一些超链接代码。
我正在使用此代码
<?php echo get_the_term_list( $post->ID, 'writer', '', ', ' ); ?>
作为
<meta name="description" content="These are the famous writers <?php echo get_the_term_list( $post->ID, 'writer', '', ', ' ); ?>. "/>
结果我想要这个。
<meta name="description" content="These are the famous writers one, two, three" />
但我得到了这个。
<meta name="description" content="These are the famous writers <a href="http://www.example.com/one">one</a>, <a href="http://www.example.com/two">two</a>, <a href="http://www.example.com/three">three</a>" />
那么如果没有超链接,我该怎么办呢。