Skip to content

Instantly share code, notes, and snippets.

@WP-Panda
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WP-Panda/9875797 to your computer and use it in GitHub Desktop.
Save WP-Panda/9875797 to your computer and use it in GitHub Desktop.
Default text in content
<?php
function add_default_text_in_before_content() {
global $post;
$content = $post->post_content;
return 'My default text'.$content;
}
add_filter('the_content', 'add_default_text_in_before_content');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment