Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home
/
qtdcvxyp
/
dreamleap.star4hire.com
/
wp-content
/
themes
/
edura
✏️
Editing: page.php
<?php /** * @Packge : Edura * @Version : 1.0 * @Author : Themeholy * @Author URI : https://www.themeholy.com/ * */ // Block direct access if( !defined( 'ABSPATH' ) ){ exit; } //header get_header(); /** * * Hook for Page Start Wrapper * * Hook edura_page_start_wrap * * @Hooked edura_page_start_wrap_cb 10 * */ do_action( 'edura_page_start_wrap' ); /** * * Hook for Column Start Wrapper * * Hook edura_page_col_start_wrap * * @Hooked edura_page_col_start_wrap_cb 10 * */ do_action( 'edura_page_col_start_wrap' ); if( have_posts() ){ while( have_posts() ){ the_post(); // Post Contant get_template_part( 'templates/content', 'page' ); } // Reset Data wp_reset_postdata(); }else{ get_template_part( 'templates/content', 'none' ); } /** * * Hook for Column End Wrapper * * Hook edura_page_col_end_wrap * * @Hooked edura_page_col_end_wrap_cb 10 * */ do_action( 'edura_page_col_end_wrap' ); /** * * Hook for Page Sidebar * * Hook edura_page_sidebar * * @Hooked edura_page_sidebar_cb 10 * */ do_action( 'edura_page_sidebar' ); /** * * Hook for Page End Wrapper * * Hook edura_page_end_wrap * * @Hooked edura_page_end_wrap_cb 10 * */ do_action( 'edura_page_end_wrap' ); //footer get_footer();
💾 Save Changes
❌ Cancel