Advertisement
Guest User

restore_all_filters

a guest
Nov 24th, 2012
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.23 KB | None | 0 0
  1. </div> <!-- !#WRAPPER -->
  2. <div id="contact"></div>
  3. <div id="center-footer"><div id="footer">
  4.     <div class="colonne-gauche">
  5.         <?php bbp_restore_all_filters('the_content',0); ?>
  6.  
  7.         <?php if (get_post_field('post_status', 54, 'raw') == 'publish') : ?>
  8.             <h1><?php echo get_post_field( 'post_title', 54, 'raw' ); edit_post_link( Éditer, '', '', 54 ); ?></h1>
  9.             <?php $P54 = wpautop(get_post_field( 'post_content', 54 ));
  10.             echo apply_filters('the_content',$P54); ?>
  11.         <?php endif; ?>
  12.     </div>
  13.     <div class="colonne-droite">
  14.         <?php if (get_post_field('post_status', 57, 'raw') == 'publish') : ?>
  15.             <h1><?php echo get_post_field( 'post_title', 57, 'raw' ); edit_post_link( Éditer, '', '', 57 );?></h1>
  16.             <?php $P57 =  wpautop(get_post_field( 'post_content', 57 ));
  17.             echo apply_filters('the_content',$P57); ?>
  18.         <?php endif; ?>
  19.  
  20.         <?php if (get_post_field('post_status', 59, 'raw') == 'publish') : ?>
  21.             <h1><?php echo get_post_field( 'post_title', 59, 'raw' ); edit_post_link( Éditer, '', '', 59 );?></h1>
  22.             <?php $P59 = wpautop(get_post_field( 'post_content', 59 ));
  23.             echo apply_filters('the_content',$P59);?>
  24.         <?php endif; ?>
  25.     </div>
  26. </div><div style="clear:both"></div></div>
  27.  
  28. <?php wp_footer(); ?>
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement