Guest User

Untitled

a guest
Jan 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. jQuery('.homepage_buttons_text a[href^="http://danrobertsgroup.com/?attachment_id=1037"]').each(function(){
  2. jQuery(this).html("<h1 class='homepage_button_title'>Workouts</h1><span class='homepage_button_title'>Books / DVD's / Downloads</span>");
  3. });
  4.  
  5. function child_theme_enqueue_scripts() {
  6. wp_enqueue_script(
  7. 'child-scripts',
  8. get_stylesheet_directory_uri() . '/js/child-scripts.js',
  9. array( 'jquery' ),
  10. '1.0',
  11. true
  12. );
  13. }
  14. add_action( 'wp_enqueue_scripts', 'child_theme_enqueue_scripts' );
  15.  
  16. jQuery(document).ready(function(){
  17. jQuery('.homepage_buttons_text a[href^="http://danrobertsgroup.com/?attachment_id=1037"]').each(function(){
  18. jQuery(this).html("<h1 class='homepage_button_title'>Workouts</h1><span class='homepage_button_title'>Books / DVD's / Downloads</span>");
  19. });
  20. });
  21.  
  22. function child_theme_enqueue_scripts() {
  23. wp_enqueue_script(
  24. 'child-scripts',
  25. get_stylesheet_directory_uri() . '/js/child-scripts.js',
  26. array( 'jquery' ),
  27. '1.0',
  28. true
  29. );
  30. }
  31. add_action( 'wp_enqueue_scripts', 'child_theme_enqueue_scripts', 30 );
Add Comment
Please, Sign In to add comment