jan_dembowski

identify-id.php

Apr 11th, 2012
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. <?php
  2. /*
  3. Plugin Name: Identify ID
  4. */
  5.  
  6. add_filter( 'the_content' , 'mh_identify_id' );
  7. function mh_identify_id( $content ) {
  8.         $mh_identify = '<h3>The ID is ' . get_the_ID();
  9.         if( is_page( get_the_ID() ) ) {
  10.                 $mh_identify .= ' and this is a page.</h3>';
  11.                 } else {
  12.                 $mh_identify .= ' and this is a post.</h3>';
  13.         }
  14.         return $mh_identify . $content;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment