%PDF- %PDF-
Direktori : /var/www/html/qendrasteps/wp-content/themes/tm-heli/projects/ |
Current File : /var/www/html/qendrasteps/wp-content/themes/tm-heli/projects/single-project.php |
<?php /** * The Template for displaying all single projects. * * Override this template by copying it to yourtheme/projects/single-project.php * * @author WooThemes * @package Projects/Templates * @version 1.0.0 */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly get_header( 'projects' ); ?> <?php /** * projects_before_main_content hook * * @hooked projects_output_content_wrapper - 10 (outputs opening divs for the content) */ do_action( 'projects_before_main_content' ); ?> <?php while ( have_posts() ) : the_post(); ?> <div id="project-<?php the_ID(); ?>" <?php post_class(); ?>> <?php the_content(); ?> <nav class="navigation portfolio-navigation"> <h2 class="screen-reader-text"><?php esc_html_e( 'Portfolio navigation', 'tm-heli' ); ?></h2> <div class="nav-links"> <?php previous_post_link( '<div class="nav-previous">%link</div>', '%title' ); ?> <a class="portfolio-home-btn" href="<?php echo esc_url( home_url( '/' ) ) ?>"></a> <?php next_post_link( '<div class="nav-next">%link</div>', '%title' ); ?> </div> <!-- .nav-links --> </nav> </div><!-- #project-<?php the_ID(); ?> --> <?php endwhile; // end of the loop. ?> <?php /** * projects_after_main_content hook * * @hooked projects_output_content_wrapper_end - 10 (outputs closing divs for the content) */ do_action( 'projects_after_main_content' ); ?> <?php /** * projects_sidebar hook * * @hooked projects_get_sidebar - 10 */ do_action( 'projects_sidebar' ); ?> <?php get_footer( 'projects' );