Created
June 16, 2022 06:03
-
-
Save bagerathan/edeb846c41a1c735c4d121b7034555ad to your computer and use it in GitHub Desktop.
[Change permalinks]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//redirect based on custom field value | |
add_filter( 'post_link', 'catalyst_external_permalink', 10, 2 ); | |
function catalyst_external_permalink( $link, $post ){ | |
$meta = get_post_meta( $post->ID, 'external_url', TRUE ); | |
$url = esc_url( filter_var( $meta, FILTER_VALIDATE_URL ) ); | |
return $url ? $url : $link; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment