Advertisement
Guest User

Untitled

a guest
Oct 16th, 2012
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <?php
  2. add_action('after_setup_theme', 'my_twentyten_enfant_setup');
  3. function my_twentyten_enfant_setup(){
  4. load_theme_textdomain('twentyten_enfant', get_template_directory() . '/languages/');
  5. }
  6. ?>
  7.  
  8. function twentyten_posted_on() {
  9. printf( __( &#039;&lt;span class=&quot;%1$s&quot;&gt;Posted on&lt;/span&gt; %2$s&#039;, &#039;twentyten&#039; ),
  10. &#039;meta-prep meta-prep-author&#039;,
  11. sprintf( &#039;&lt;a href=&quot;%1$s&quot; title=&quot;%2$s&quot; rel=&quot;bookmark&quot;&gt;&lt;span class=&quot;entry-date&quot;&gt;%3$s&lt;/span&gt;&lt;/a&gt;&#039;,
  12. get_permalink(),
  13. esc_attr( get_the_time() ),
  14. get_the_date()
  15. )
  16. );
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement