File Editor
Directories:
.. (Back)
images
includes
js
languages
sample
skins
themify
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
search.php
searchform.php
sidebar.php
single-portfolio.php
single.php
style.css
taxonomy-portfolio-category.php
taxonomy.php
theme-class.php
theme-config.php
theme-functions.php
theme-modules.php
theme-options.php
Create New File
Create
Edit File: taxonomy.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 ///////////////////////////////////////////// // Category Title ///////////////////////////////////////////// ?> <h1 class="page-title"><?php single_cat_title(); ?></h1> <?php echo $themify->theme->get_category_description(); ?> <?php ///////////////////////////////////////////// // Loop ///////////////////////////////////////////// ?> <?php if (have_posts()) : ?> <!-- loops-wrapper --> <div id="loops-wrapper" class="loops-wrapper <?php echo $themify->layout . ' ' . $themify->post_layout; ?>"> <?php while (have_posts()) : the_post(); ?> <?php get_template_part( 'includes/loop' , 'index'); ?> <?php endwhile; ?> </div> <!-- /loops-wrapper --> <?php get_template_part( 'includes/pagination'); ?> <?php ///////////////////////////////////////////// // Error - No Page Found ///////////////////////////////////////////// ?> <?php else : ?> <p><?php _e( 'Sorry, nothing found.', 'themify' ); ?></p> <?php endif; ?> <?php themify_content_end(); //hook ?> </div> <?php themify_content_after(); //hook ?> <!-- /#content --> <?php ///////////////////////////////////////////// // Sidebar ///////////////////////////////////////////// if ($themify->layout != "sidebar-none"): get_sidebar(); endif; ?> </div> <!-- /#layout --> <?php get_footer(); ?>
Save Changes
Rename File
Rename