Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <?php
  2. /**
  3. * Hook - construction_base_action_footer.
  4. *
  5. * @hooked construction_base_footer_copyright - 10
  6. */
  7. do_action( 'construction_base_action_footer' );
  8. ?>
  9. <?php wp_footer(); ?>
  10. </body>
  11. </html>
  12.  
  13. add_action('construction_base_action_footer', 'action_name');
  14.  
  15. function action_name() {
  16. remove_action( 'construction_base_action_footer', 'construction_base_footer_copyright', 10 );
  17. echo "<p>Additional text</p>";
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement