Server IP : 209.38.156.173 / Your IP : 216.73.216.122 [ Web Server : Apache/2.4.52 (Ubuntu) System : Linux lakekumayuhotel 5.15.0-136-generic #147-Ubuntu SMP Sat Mar 15 15:53:30 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.22 Disable Function : NONE Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/wp-content/themes/sinatra/inc/customizer/ |
Upload File : |
<?php /** * Sinatra Customizer helper functions. * * @package Sinatra * @author Sinatra Team <hello@sinatrawp.com> * @since 1.0.0 */ /** * Do not allow direct script access. */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Returns array of available widgets. * * @since 1.0.0 * @return array, $widgets array of available widgets. */ function sinatra_get_customizer_widgets() { $widgets = array( 'text' => 'Sinatra_Customizer_Widget_Text', 'nav' => 'Sinatra_Customizer_Widget_Nav', 'socials' => 'Sinatra_Customizer_Widget_Socials', 'search' => 'Sinatra_Customizer_Widget_Search', 'button' => 'Sinatra_Customizer_Widget_Button', ); return apply_filters( 'sinatra_customizer_widgets', $widgets ); } /** * Get choices for "Hide on" customizer options. * * @since 1.0.0 * @return array */ function sinatra_get_display_choices() { // Default options. $return = array( 'home' => array( 'title' => esc_html__( 'Home Page', 'sinatra' ), ), 'posts_page' => array( 'title' => esc_html__( 'Blog / Posts Page', 'sinatra' ), ), 'search' => array( 'title' => esc_html__( 'Search', 'sinatra' ), ), 'archive' => array( 'title' => esc_html__( 'Archive', 'sinatra' ), 'desc' => esc_html__( 'Dynamic pages such as categories, tags, custom taxonomies...', 'sinatra' ), ), 'post' => array( 'title' => esc_html__( 'Single Post', 'sinatra' ), ), 'page' => array( 'title' => esc_html__( 'Single Page', 'sinatra' ), ), ); // Get additionally registered post types. $post_types = get_post_types( array( 'public' => true, '_builtin' => false, ), 'objects' ); if ( is_array( $post_types ) && ! empty( $post_types ) ) { foreach ( $post_types as $slug => $post_type ) { $return[ $slug ] = array( 'title' => $post_type->label, ); } } return apply_filters( 'sinatra_display_choices', $return ); } /** * Get device choices for "Display on" customizer options. * * @since 1.2.0 * @return array */ function sinatra_get_device_choices() { // Default options. $return = array( 'desktop' => array( 'title' => esc_html__( 'Hide On Desktop', 'sinatra' ), ), 'tablet' => array( 'title' => esc_html__( 'Hide On Tablet', 'sinatra' ), ), 'mobile' => array( 'title' => esc_html__( 'Hide On Mobile', 'sinatra' ), ), ); return apply_filters( 'sinatra_device_choices', $return ); }