Advertisement
Guest User

commas

a guest
Feb 22nd, 2011
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <aside>
  2. <!-- related information about this post -->
  3. <?php the_meta(); ?>
  4. </aside>
  5.  
  6. that's it!
  7.  
  8. // it makes this code:
  9.  
  10. <aside>
  11. <!-- related information about this post -->
  12. <ul class="post-meta">
  13. <li><span class="post-meta-key">currently reading:</span> alice in wonderland, another book</li>
  14. </ul>
  15. </aside>
  16.  
  17. // i want it to output this:
  18.  
  19. <aside>
  20. <!-- related information about this post -->
  21. <ul class="post-meta">
  22. <li><span class="post-meta-key">currently reading:</span> alice in wonderland<br />another book</li>
  23. </ul>
  24. </aside>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement