File Editor
Directories:
.. (Back)
admin
images
includes
js
languages
sample
skins
themify
themify-builder
uploads
Files:
404.php
changelog.txt
comments.php
customizer-basic-config.php
customizer-config.php
footer.php
functions.php
header.php
index.php
license.txt
media-queries.css
page.php
rtl.css
search.php
searchform.php
sidebar.php
single-portfolio-expand.php
single-portfolio.php
single-team.php
single.php
style.css
taxonomy-portfolio-category.php
taxonomy.php
theme-class-highlight.php
theme-class-portfolio.php
theme-class-section.php
theme-class-team.php
theme-class-types.php
theme-class.php
theme-config.php
theme-functions.php
theme-modules.php
theme-options.php
Create New File
Create
Edit File: page.php
<?php get_header(); ?> <?php /** Themify Default Variables * @var object */ global $themify; ?> <!-- layout --> <div id="layout" class="clearfix pagewidth"> <?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 endif; ?> <?php ///////////////////////////////////////////// // PAGE ///////////////////////////////////////////// if (have_posts()) : while (have_posts()) : the_post(); ?> <div id="page-<?php the_ID(); ?>" class="type-page"> <?php if($themify->page_title != "yes"): ?> <time datetime="<?php the_time( 'o-m-d' ); ?>"></time> <h1 class="page-title"><?php the_title(); ?></h1> <!-- /page-title --> <?php endif; ?> <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->page_image_width}&h=0&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'), '[', ']'); ?> <!-- comments --> <?php if(!themify_check('setting-comments_pages') && $themify->query_category == ""): ?> <?php comments_template(); ?> <?php endif; ?> <!-- /comments --> </div> <!-- /.page-content --> </div><!-- /.type-page --> <?php endwhile; endif; ?> <?php ///////////////////////////////////////////// // Query Category ///////////////////////////////////////////// if('' != $themify->query_category): ?> <?php // Categories for Query Posts or Portfolios $categories = '0' == $themify->query_category? $themify->theme->get_all_terms_ids($themify->query_taxonomy) : explode(',', str_replace(' ', '', $themify->query_category)); $qpargs = array( 'post_type' => $themify->query_post_type, 'tax_query' => array( array( 'taxonomy' => $themify->query_taxonomy, 'field' => 'id', 'terms' => $categories ) ), 'posts_per_page' => $themify->posts_per_page, 'paged' => $themify->paged, 'order' => $themify->order, 'orderby' => $themify->orderby ); ?> <?php query_posts(apply_filters('themify_query_posts_page_args', $qpargs)); ?> <?php if(have_posts()): ?> <!-- loops-wrapper --> <div id="loops-wrapper" class="loops-wrapper query-type-<?php echo $themify->query_post_type; ?> <?php echo $themify->layout . ' ' . $themify->post_layout; ?>"> <?php while(have_posts()) : the_post(); ?> <?php get_template_part('includes/loop', $themify->query_post_type); ?> <?php endwhile; ?> </div> <!-- /loops-wrapper --> <?php if(themify_is_query_page() && 'section' != $themify->query_post_type) { ?> <?php if ($themify->page_navigation != "yes"): ?> <?php get_template_part( 'includes/pagination'); ?> <?php endif; ?> <?php } ?> <?php else : ?> <?php endif; wp_reset_query(); ?> <?php endif; ?> <?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(); ?>
Save Changes
Rename File
Rename