What is VETO power

the_content

the_content

is the core hook of the content.

Description

apply_filters( 'the_content',  $post_post_content ); 

Usage

    The following example is for adding a hook callback.
  1. $post_post_content = apply_filters( 'the_content', $post_post_content );   
  2. if ( !empty( $post_post_content ) ) { 
  3. // everything has led up to this point... 
    To remove a hook callback, use the example below.
  1. // define the the_content callback 
  2. function filter_the_content( $post_post_content ) { 
  3. // make filter magic happen here... 
  4. return $post_post_content
  5. }; 
  6.  
  7. // add the filter 
  8. add_filter( 'the_content', 'filter_the_content', 10, 1 ); 
    To remove a hook callback, use the example below.   
  1. // remove the filter 
  2. remove_filter( 'the_content', 'filter_the_content', 10, 1 );




Comments