Sid Gifari From Gifari Industries - BD Cyber Security Team
Home
/
home
/
drleilu
/
www
/
wp-content
/
themes
/
bella-beauty
/
kits
/
settings
/
single
/
✏️
Editing: section.php
<?php namespace BellaBeautySpace\Kits\Settings\Single; use BellaBeautySpace\Kits\Settings\Base\Base_Section; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } /** * Single section. */ class Section extends Base_Section { /** * Get name. * * Retrieve the section name. */ public static function get_name() { return 'single'; } /** * Get title. * * Retrieve the section title. */ public static function get_title() { return esc_html__( 'Single', 'bella-beauty' ); } /** * Get icon. * * Retrieve the section icon. */ public static function get_icon() { return 'eicon-single-post'; } /** * Get toggles. * * Retrieve the section toggles. */ public static function get_toggles() { return array( 'single', 'media', 'title', 'content', 'meta_first', 'meta_second', 'nav', 'author', 'more-posts', 'comments', ); } }
💾 Save
❌ Cancel