Advertisement
Guest User

Untitled

a guest
May 9th, 2012
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. //Where you have this:
  2. <div class="post_excerpt">
  3.     <?php mysite_post_content( array( 'blog_layout' => $layout['blog_layout'] ) ); ?>
  4. </div>
  5.  
  6. //Replace with this:
  7. <div class="post_excerpt">
  8.     <?php if (is_search()) { echo "<h1>"; the_title(); echo "</h1>"; } ?>
  9.     <?php mysite_post_content( array( 'blog_layout' => $layout['blog_layout'] ) ); ?>
  10. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement