Skip to content

Instantly share code, notes, and snippets.

@gthayer
Created October 1, 2015 19:49
Show Gist options
  • Save gthayer/66e3aac58a1fa107a9d5 to your computer and use it in GitHub Desktop.
Save gthayer/66e3aac58a1fa107a9d5 to your computer and use it in GitHub Desktop.
function retrieve_the_content( $var1 ) {
global $post;
return strip_tags($post->post_content);
}
function yoast_custom_meta_variables() {
wpseo_register_var_replacement( '%%the_content%%', 'retrieve_the_content', 'basic', 'Replaced with The Content' );
}
add_action( 'wpseo_register_extra_replacements', 'yoast_custom_meta_variables' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment