[ 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
/
themes
/
astra
/
inc
/
modules
/
posts-structures
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 assets
SET
[ DEL ]
📁 css
SET
[ DEL ]
📁 customizer
SET
[ DEL ]
📄 class-astra-post-structures.php
1,281 B
SET
[ EDIT ]
|
[ DEL ]
📄 class-astra-posts-structure-loader.php
10,732 B
SET
[ EDIT ]
|
[ DEL ]
📄 class-astra-posts-structure-markup.php
8,274 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: class-astra-post-structures.php
<?php /** * Post Structures Extension * * @package Astra * @since 4.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } define( 'ASTRA_THEME_POST_STRUCTURE_DIR', ASTRA_THEME_DIR . 'inc/modules/posts-structures/' ); define( 'ASTRA_THEME_POST_STRUCTURE_URI', ASTRA_THEME_URI . 'inc/modules/posts-structures/' ); /** * Post Structures Initial Setup * * @since 4.0.0 */ class Astra_Post_Structures { /** * Constructor function that loads require files. */ public function __construct() { // @codingStandardsIgnoreStart WPThemeReview.CoreFunctionality.FileInclude.FileIncludeFound require_once ASTRA_THEME_POST_STRUCTURE_DIR . 'class-astra-posts-structure-loader.php'; require_once ASTRA_THEME_POST_STRUCTURE_DIR . 'class-astra-posts-structure-markup.php'; // Include front end files. if ( ! is_admin() ) { require_once ASTRA_THEME_POST_STRUCTURE_DIR . 'css/single-dynamic.css.php'; require_once ASTRA_THEME_POST_STRUCTURE_DIR . 'css/archive-dynamic.css.php'; require_once ASTRA_THEME_POST_STRUCTURE_DIR . 'css/special-dynamic.css.php'; } // @codingStandardsIgnoreEnd WPThemeReview.CoreFunctionality.FileInclude.FileIncludeFound } } /** * Kicking this off by creating new object. */ new Astra_Post_Structures();