Advertisement
Guest User

Untitled

a guest
Apr 26th, 2015
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <?php //* Don't copy the php
  2.  
  3. // Enqueue To Top script
  4. add_action( 'wp_enqueue_scripts', 'to_top_script' );
  5. function to_top_script() {
  6. wp_enqueue_script( 'to-top', get_stylesheet_directory_uri() . '/js/to-top.js', array( 'jquery' ), '1.0', true );
  7. }
  8.  
  9. // Add To Top button
  10. add_action( 'genesis_before', 'genesis_to_top');
  11. function genesis_to_top() {
  12. echo '<a href="#0" class="to-top" title="Back To Top">Top</a>';
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement