Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. if ( ! function_exists( 'el_child_get_header_after' ) ) {
  2. function el_child_get_header_after() {
  3. if( did_action( 'elementor_pro/init' ) ) {
  4. ?>
  5. <div id="content" class="site-content" tabindex="-1">
  6. <div class="container">
  7. <?php
  8. }
  9. }
  10. }
  11. add_action( 'get_header', 'el_child_get_header_after', 20 );
  12.  
  13. if ( ! function_exists( 'el_child_get_footer_before' ) ) {
  14. function el_child_get_footer_before() {
  15. if( did_action( 'elementor_pro/init' ) ) {
  16. ?>
  17. </div>
  18. </div>
  19. <?php
  20. }
  21. }
  22. }
  23. add_action( 'get_footer', 'el_child_get_footer_before' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement