HEX
Server: Apache
System: Linux host35.server.ae 5.14.0-503.40.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Mon May 5 06:06:04 EDT 2025 x86_64
User: nokatech (2100)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/nokatech/public_html/wp-content/themes/around/loop-portfolio.php
<?php
/**
 * The loop template file for post type jetpack-portfolio.
 *
 * Included on pages like index.php, archive.php and search.php to display a loop of posts
 * Learn more: https://codex.wordpress.org/The_Loop
 *
 * @package around
 */

do_action( 'around_loop_portfolio_before' );

global $around_loop_portfolio_index;
$around_loop_portfolio_index = 0;

while ( have_posts() ) :
    
    the_post();
    /**
     * Include the Post-Format-specific template for the content.
     * If you want to override this in a child theme, then include a file
     * called content-___.php (where ___ is the Post Format name) and that will be used instead.
     */
    get_template_part( 'templates/portfolio/content', 'portfolio' );
    $around_loop_portfolio_index++;

endwhile;

unset( $GLOBALS['around_loop_portfolio_index'] );

do_action( 'around_loop_portfolio_after' );