Server : Apache System : Linux ls31.server.ly 3.10.0-962.3.2.lve1.5.68.el7.x86_64 #1 SMP Wed Apr 6 11:12:23 UTC 2022 x86_64 User : medchoco ( 2906) PHP Version : 8.3.16 Disable Function : mail Directory : /home/medchoco/www/wp-content/themes/puca/projects/ |
Upload File : |
<?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(); ?> <?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(); ?> <?php projects_get_template_part('content', 'single-project'); ?> <?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();