File Editor
Directories:
.. (Back)
assets
demo
inc
languages
template-parts
Files:
404.php
archive.php
class.theme-modules.php
comments.php
footer.php
functions.php
header.php
home.php
index.php
page.php
search.php
searchform.php
sidebar.php
single-portfolio.php
single.php
style.css
template-layout-builder.php
Create New File
Create
Edit File: single-portfolio.php
<?php /** * The template for displaying all single posts * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-portfolio * * @package quarty */ get_header(); ?> <?php while ( have_posts() ) : the_post(); ?> <div class="qrt-left-content"> <!-- section title --> <div class="qrt-section-title"> <!-- row --> <div class="row p-30-0"> <!-- col --> <div class="col-lg-12"> <h1 class="title--h2"><?php the_title(); ?></h1> <!-- title frame end --> <!-- right frame --> <div class="qrt-el-suptitle"> <?php $categories_list = get_the_terms( get_the_ID(), 'portfolio_categories' ); if ( $categories_list ) : $total = count( $categories_list ); $i = 0; echo '<div class="qrt-project-category">'; foreach ( $categories_list as $category ) { $i++; if ( $total != $i ) { echo esc_html( $category->name ) . esc_html__( ', ', 'quarty' ); } else { echo esc_html( $category->name ); } } echo '</div>'; endif; ?> </div> </div> <!-- col end --> </div> <!-- row end --> </div> <!-- section title end --> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php the_content(); ?> </div><!-- #post-<?php the_ID(); ?> --> <?php quarty_single_navigantion(); ?> </div> <?php endwhile; ?> <?php get_footer();
Save Changes
Rename File
Rename