您可以过滤永久链接URL。在这个过滤器中,我们可以检查是否存在*post\\u bookmark\\u url*元键。如果有,我们就用它来代替
add_filter(\'post_link\',\'check_for_custom_url\',10,3);
function check_for_custom_url( $permalink, $post, $leavename ) {
$custom = get_post_meta( $post->ID, \'post_bookmark_url\', true );
return ( $custom ) ? esc_url( $custom ) : $permalink;
}
//Version to check if we\'re on the home page as well
add_filter(\'post_link\',\'check_for_custom_url\',10,3);
function check_for_custom_url( $permalink, $post, $leavename ) {
$custom = false;
if( is_home() || is_front_page() )
$custom = get_post_meta( $post->ID, \'post_bookmark_url\', true );
return ( $custom ) ? esc_url( $custom ) : $permalink;
}