以下代码帮助我在the_content
部分
但我需要一个帮助,使其显示为超链接。
代码如下:
function wpa_content_filter( $content ) {
global $post;
if( $meta = get_post_meta( $post->ID, \'demo_link\', true ) ) {
return $content . $meta;
}
return $content;
}
add_filter( \'the_content\', \'wpa_content_filter\', 10 );
例如:
如果我给出以下自定义字段值:
demo_link = http://www.example.com
代码结果如下
http://www.example.com
但我需要链接可以点击。
有人能帮忙吗?
谢谢
最合适的回答,由SO网友:admcfajn 整理而成
我想这就是你要找的。。。
function wpa_content_filter( $content ) {
global $post;
if( $meta = get_post_meta( $post->ID, \'demo_link\', true ) ) {
return $content.\' <a href="\'.$meta.\'">\'.$meta.\'</a>\';
}
return $content;
}
add_filter( \'the_content\', \'wpa_content_filter\', 10 );