Server IP : 192.64.118.117 / Your IP : 3.148.108.24 Web Server : LiteSpeed System : Linux premium56.web-hosting.com 4.18.0-513.24.1.lve.1.el8.x86_64 #1 SMP Thu May 9 15:10:09 UTC 2024 x86_64 User : thecgapy ( 1160) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/home/thecgapy/mcprintingandpromotions.com/wp-content/themes/customify/ |
Upload File : |
<?php /** * The main template file * * This is the most generic template file in a WordPress theme * and one of the two required files for a theme (the other being style.css). * It is used to display a page when nothing more specific matches a query. * E.g., it puts together the home page when no home.php file exists. * * @link https://codex.wordpress.org/Template_Hierarchy * * @package customify */ get_header(); ?> <div class="content-inner"> <?php do_action( 'customify/content/before' ); if ( is_singular() ) { if ( ! customify_is_e_theme_location( 'single' ) ) { customify_blog_posts_heading(); customify_blog_posts(); } } elseif ( is_archive() || is_home() || is_search() ) { if ( ! customify_is_e_theme_location( 'archive' ) ) { customify_blog_posts_heading(); customify_blog_posts(); } } else { if ( ! customify_is_e_theme_location( 'single' ) ) { get_template_part( 'template-parts/404' ); } } do_action( 'customify/content/after' ); ?> </div><!-- #.content-inner --> <?php get_footer();