Server IP : 172.24.0.40 / Your IP : 216.73.216.10 Web Server : Apache System : Linux dbweb26.ust.edu.ph 4.18.0-513.5.1.el8_9.x86_64 #1 SMP Fri Sep 29 05:21:10 EDT 2023 x86_64 User : apache ( 48) PHP Version : 8.2.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/tomas.dbweb26.0617251441/public_html/wp-content/themes/jetblack/inc/customizer/ |
Upload File : |
<?php /** * Useful Utility methods shared by most theme options * * @package JetBlack */ class JetBlack_Customizer_Utilities { /** * Function to register control and setting */ public static function register_option( $option ) { global $wp_customize; // Get our Customizer defaults $defaults = apply_filters( 'jetblack_customizer_defaults', array() ); // Add Setting. $wp_customize->add_setting( $option['settings'], array( 'sanitize_callback' => $option['sanitize_callback'], 'default' => isset( $option['default'] ) ? $option['default'] : ( isset( $defaults[ $option['settings'] ] ) ? $defaults[ $option['settings'] ] : '' ), 'transport' => isset( $option['transport'] ) ? $option['transport'] : 'refresh', 'theme_supports' => isset( $option['theme_supports'] ) ? $option['theme_supports'] : '', 'description_hidden' => isset( $option['description_hidden'] ) ? $option['description_hidden'] : 0, ) ); $control = array( 'label' => $option['label'], 'section' => $option['section'], 'settings' => $option['settings'], ); if ( isset( $option['active_callback'] ) ) { $control['active_callback'] = $option['active_callback']; } if ( isset( $option['priority'] ) ) { $control['priority'] = $option['priority']; } if ( isset( $option['choices'] ) ) { $control['choices'] = $option['choices']; } if ( isset( $option['type'] ) ) { $control['type'] = $option['type']; } if ( isset( $option['input_attrs'] ) ) { $control['input_attrs'] = $option['input_attrs']; } if ( isset( $option['description'] ) ) { $control['description'] = $option['description']; } if ( isset( $option['custom_control'] ) ) { $wp_customize->add_control( new $option['custom_control']( $wp_customize, $option['settings'], $control ) ); } else { $wp_customize->add_control( $option['settings'], $control ); } } /** * Get array of terms. */ public static function get_terms( $term ) { $output_terms = array(); $terms = get_terms( array( 'taxonomy' => $term, 'order' => 'ASC', 'orderby' => 'id', ) ); if ( ! is_wp_error( $terms ) ) { if ( $terms ) { foreach( $terms as $term ) { $output_terms[$term->term_id] = $term->name; } } } return $output_terms; } /** * Get array of posts. */ public static function get_posts_as_array( $args ) { $output_terms = array(); $args['suppress_filters'] = false; // Set this to emable advanced caching for get_posts lile WP_Query. $get_posts = get_posts( $args ); if ( ! empty( $get_posts ) ) { foreach ( $get_posts as $get_post ) { $title = $get_post->post_title; if ( empty( $title ) ) { /* translators: 1: Post ID. */ $title = sprintf( esc_html__( 'ID: %s No Title', 'jetblack' ), $get_post->ID ); } $output_terms[ $get_post->ID ] = $title; } } return $output_terms; } /** * Returns choices array for section visibility. * @return array */ static function section_visibility() { $options = array( 'disabled' => esc_html__( 'Disabled', 'jetblack' ), 'homepage' => esc_html__( 'Homepage / Frontpage', 'jetblack' ), 'entire-site' => esc_html__( 'Entire Site', 'jetblack' ), ); return apply_filters( 'jetblack_section_visibility_options', $options ); } } /** * Initialize class */ $jetblack_utilities = new JetBlack_Customizer_Utilities();