Advertisement
Guest User

Untitled

a guest
Feb 11th, 2013
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. function baw_post_view_in_content( $content ) {
  2. $content .= '<p>';
  3. $content .= '<em>Article lu ';
  4. $content .= do_shortcode( '[post_view]' );
  5. $content .= ' fois au total.</em><br />';
  6. $content .= '<em>Article lu ';
  7. $content .= do_shortcode( '[post_view time="day"]' );
  8. $content .= " fois aujourd'hui.</em><br />";
  9. $content .= '<em>Article lu ';
  10. $content .= do_shortcode( '[post_view time="month"]' );
  11. $content .= ' fois ce mois-ci.</em><br />';
  12. $content .= '<em>Article lu ';
  13. $content .= do_shortcode( '[post_view time="year"]' );
  14. $content .= " fois cette ann&eacute;e.</em>";
  15. $content .= '</p>';
  16. return $content;
  17. }
  18. add_action( 'the_content', 'baw_post_view_in_content' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement