the_content hook is also fired for pages

add_filter( 'the_content', 'our_modify_the_content' );      //the_content gets the post/page content retrieved from the database, prior to printing on the screen
function our_modify_the_content( $content )
{
  //Exit if not a page
  if (!is_page())
    return($content);

  $Output = '';
  $Output .= 'Something<br>';
  $Output .= $content;
  $Output .= 'Something else';
  return $Output;
}
Feel free to comment if you can add help to this page or point out issues and solutions you have found. I do not provide support on this site, if you need help with a problem head over to stack overflow.

Comments

Your email address will not be published. Required fields are marked *