Advertisement
Guest User

Untitled

a guest
Aug 14th, 2012
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. //I want to search for this code inside "file.php"...
  2. <?php foreach comments as comment { ?>
  3.  
  4. <h1><?php the_comment_author() ?> says</h1>
  5. }
  6.  
  7. //And let's suppose I want to replace it for...
  8.  
  9. <?php foreach comments as comment { ?>
  10.  
  11. <h3>Let's hear what <?php the_comment_author() ?> has to say, while <?php the_loggedin_user() ?> hears him talk</h3>
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement