Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2017
1,580
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. <?php
  2. // Template Name: Business Template
  3.  
  4. get_header();
  5. get_template_part('index', 'static');
  6.  
  7. $quality_pro_options=theme_data_setup();
  8. $current_options = wp_parse_args( get_option( 'quality_pro_options', array() ), $quality_pro_options );
  9.  
  10. //****** get index service *********/
  11. if ( $current_options['service_enable'] == true ) {
  12. get_template_part('index', 'service');
  13. }
  14. //****** get index Projects *********/
  15. if ( $current_options['home_projects_enabled'] == true ) {
  16. get_template_part('index', 'projects');
  17. }
  18. //****** get index Blog *********/
  19. if ( $current_options['home_blog_enabled'] == true ) {
  20. get_template_part('index', 'blog');
  21. }
  22. get_footer();
  23. ?>
  24. <?php the_content(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement