Guest User

Untitled

a guest
Aug 21st, 2012
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. <?php
  2. /**
  3. * @package WordPress
  4. * @subpackage PulsePress
  5. */
  6. get_sidebar(); ?>
  7. <div class="clear"></div>
  8.  
  9. </div> <!-- // wrapper -->
  10.  
  11. <div id="notify"></div>
  12.  
  13. <div id="help">
  14. <dl class="directions">
  15. <dt>c</dt><dd><?php _e( 'compose new post', 'pulse_press' ); ?></dd>
  16. <dt>j</dt><dd><?php _e( 'next post/next comment', 'pulse_press' ); ?></dd>
  17. <dt>k</dt> <dd><?php _e( 'previous post/previous comment', 'pulse_press' ); ?></dd>
  18. <dt>r</dt> <dd><?php _e( 'reply', 'pulse_press' ); ?></dd>
  19. <?php if ( current_user_can( 'edit_post', get_the_id() ) ) : ?>
  20. <dt>e</dt> <dd><?php _e( 'edit', 'pulse_press' ); ?></dd>
  21. <?php endif; ?>
  22. <dt>o</dt> <dd><?php _e( 'show/hide comments', 'pulse_press' ); ?></dd>
  23. <dt>t</dt> <dd><?php _e( 'go to top', 'pulse_press' ); ?></dd>
  24. <dt>l</dt> <dd><?php _e( 'go to login', 'pulse_press' ); ?></dd>
  25. <dt>h</dt> <dd><?php _e( 'show/hide help', 'pulse_press' ); ?></dd>
  26. <dt>esc</dt> <dd><?php _e( 'cancel', 'pulse_press' ); ?></dd>
  27. </dl>
  28. </div>
  29. </div>
  30. <?php wp_footer(); ?>
  31.  
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment