Advertisement
Guest User

Login-Logout Code

a guest
Aug 2nd, 2013
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. <ul>
  2. <?php wp_register(); ?>
  3. <li><?php wp_loginout(); ?></li>
  4. <li><a href="<?php bloginfo('rss2_url'); ?>" title="<?php echo esc_attr(__('Syndicate this site using RSS 2.0')); ?>"><?php _e('Entries <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
  5. <li><a href="<?php bloginfo('comments_rss2_url'); ?>" title="<?php echo esc_attr(__('The latest comments to all posts in RSS')); ?>"><?php _e('Comments <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
  6. <?php echo apply_filters( 'widget_meta_poweredby', sprintf( '<li><a href="%s" title="%s">%s</a></li>',
  7. esc_url( __( 'http://wordpress.org/' ) ),
  8. esc_attr__( 'Powered by WordPress, state-of-the-art semantic personal publishing platform.' ),
  9. _x( 'WordPress.org', 'meta widget link text' )
  10. ) ); ?>
  11. <?php wp_meta(); ?>
  12. </ul>
  13.  
  14.  
  15. 3.5.2
  16. <ul>
  17. <?php wp_register(); ?>
  18. <li><?php wp_loginout(); ?></li>
  19. <li><a href="<?php bloginfo('rss2_url'); ?>" title="<?php echo esc_attr(__('Syndicate this site using RSS 2.0')); ?>"><?php _e('Entries <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
  20. <li><a href="<?php bloginfo('comments_rss2_url'); ?>" title="<?php echo esc_attr(__('The latest comments to all posts in RSS')); ?>"><?php _e('Comments <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
  21. <li><a href="<?php esc_attr_e( 'http://wordpress.org/' ); ?>" title="<?php echo esc_attr(__('Powered by WordPress, state-of-the-art semantic personal publishing platform.')); ?>"><?php
  22. /* translators: meta widget link text */
  23. _e( 'WordPress.org' );
  24. ?></a></li>
  25. <?php wp_meta(); ?>
  26. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement