Guest User

Untitled

a guest
Jan 26th, 2023
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <strong>here&#8217;s the blank code for reference&#8230;</strong>
  2. <pre><code>&lt;?php
  3. /*
  4. Template Name: Blank - No Header, no Footer
  5. */
  6.  
  7. if ( ! defined( &#039;ABSPATH&#039; ) ){ die(); }
  8.  
  9. global $avia_config;
  10. $avia_config[&#039;template&#039;] = &quot;avia-blank&quot;;
  11.  
  12. if(!empty($avia_config[&#039;conditionals&#039;][&#039;is_builder&#039;]))
  13. {
  14. $avia_config[&#039;conditionals&#039;][&#039;is_builder_template&#039;] = true;
  15. get_template_part(&#039;template-builder&#039;);
  16. exit();
  17. }
  18. else
  19. {
  20. get_template_part(&#039;page&#039;);
  21. exit();
  22. }</code></pre>
  23. <strong>&#8212; OR &#8212;</strong>
Add Comment
Please, Sign In to add comment