使用此。
get_post_meta($post->ID, \'custom-field-name\', true);
其中,自定义字段名称是自定义字段的名称。您必须添加自定义字段名来代替自定义字段名。
还要在新浏览器窗口/选项卡添加中打开链接target="_blank"
. 始终使用esc_url()
对于URL和esc_html()
当您想在不使用HTML的情况下显示值时。
$value = get_post_meta( $post->ID, \'Author Website\', true );
if ( $value ) {
// Returns an empty string for invalid URLs
$url = esc_url( \'http://\' . $value );
if ( \'\' !== $url ) {
$display = esc_html( $value );
print "<a href=\'$url\' target=\'_blank\'>$display</a>";
}
}
您还应该将协议存储在字段中,因为某些网站可能无法通过
http
, 仅根据
https
.