🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-18 09:06:52 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
public_html
/
wp-content
/
plugins
/
elementor-pro
/
modules
/
theme-builder
/
skins
📍 /home/therahul/public_html/wp-content/plugins/elementor-pro/modules/theme-builder/skins
🔄 Refresh
✏️
Editing: posts-archive-skin-classic.php
Writable
<?php namespace ElementorPro\Modules\ThemeBuilder\Skins; use ElementorPro\Modules\Posts\Skins\Skin_Classic; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } class Posts_Archive_Skin_Classic extends Skin_Classic { use Posts_Archive_Skin_Base; protected function _register_controls_actions() { add_action( 'elementor/element/archive-posts/section_layout/before_section_end', [ $this, 'register_controls' ] ); add_action( 'elementor/element/archive-posts/section_layout/after_section_end', [ $this, 'register_style_sections' ] ); } public function get_id() { return 'archive_classic'; } public function get_title() { return esc_html__( 'Classic', 'elementor-pro' ); } public function get_container_class() { // Use parent class and parent css. return 'elementor-posts--skin-classic'; } /* Remove `posts_per_page` control */ protected function register_post_count_control() {} }
💾 Save Changes
❌ Cancel