Advertisement
Guest User

Untitled

a guest
Jan 26th, 2023
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. <pre><code>&lt;?php
  2. /*
  3. Template Name: TEST TEMPLATE
  4. */
  5.  
  6. if ( ! defined( &#039;ABSPATH&#039; ) ){ die(); }
  7.  
  8. global $avia_config, $wp_query;
  9.  
  10. //get_header();
  11.  
  12. do_action( &#039;ava_page_template_after_header&#039; );
  13.  
  14. if( get_post_meta(get_the_ID(), &#039;header&#039;, true) != &#039;no&#039;) echo avia_title();
  15.  
  16. do_action( &#039;ava_after_main_title&#039; );
  17. ?&gt;
  18.  
  19. &lt;div class=&#039;container_wrap container_wrap_first main_color &lt;?php avia_layout_class( &#039;main&#039; ); ?&gt;&#039;&gt;
  20.  
  21. &lt;div class=&#039;container&#039;&gt;
  22.  
  23. &lt;main class=&#039;template-page content &lt;?php avia_layout_class( &#039;content&#039; ); ?&gt; units&#039; &lt;?php avia_markup_helper(array(&#039;context&#039; =&gt; &#039;content&#039;,&#039;post_type&#039;=&gt;&#039;page&#039;));?&gt;&gt;
  24.  
  25. &lt;?php
  26. /* Run the loop to output the posts.
  27. * If you want to overload this in a child theme then include a file
  28. * called loop-page.php and that will be used instead.
  29. */
  30.  
  31. $avia_config[&#039;size&#039;] = avia_layout_class( &#039;main&#039; , false) == &#039;fullsize&#039; ? &#039;entry_without_sidebar&#039; : &#039;entry_with_sidebar&#039;;
  32. get_template_part( &#039;includes/loop&#039;, &#039;page&#039; );
  33. ?&gt;
  34.  
  35. &lt;!--end content--&gt;
  36. &lt;/main&gt;
  37.  
  38. &lt;?php
  39.  
  40. //get the sidebar
  41. $avia_config[&#039;currently_viewing&#039;] = &#039;page&#039;;
  42. get_sidebar();
  43.  
  44. ?&gt;
  45.  
  46. &lt;/div&gt;&lt;!--end container--&gt;
  47.  
  48. &lt;/div&gt;&lt;!-- close default .container_wrap element --&gt;
  49.  
  50. &lt;?php
  51. //get_footer();
  52. </code></pre>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement