![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/ligaamadora.com/wp-content/themes/newsphere/inc/hooks/ |
<?php /** * Implement theme metabox. * * @package Newsphere */ if (!function_exists('newsphere_add_theme_meta_box')) : /** * Add the Meta Box * * @since 1.0.0 */ function newsphere_add_theme_meta_box() { $screens = array('post', 'page'); foreach ($screens as $screen) { add_meta_box( 'newsphere-theme-settings', esc_html__('Layout Options', 'newsphere'), 'newsphere_render_layout_options_metabox', $screen, 'side', 'low' ); } } endif; add_action('add_meta_boxes', 'newsphere_add_theme_meta_box'); if (!function_exists('newsphere_render_layout_options_metabox')) : /** * Render theme settings meta box. * * @since 1.0.0 */ function newsphere_render_layout_options_metabox($post, $metabox) { $post_id = $post->ID; // Meta box nonce for verification. wp_nonce_field(basename(__FILE__), 'newsphere_meta_box_nonce'); // Fetch Options list. $content_layout = get_post_meta($post_id, 'newsphere-meta-content-alignment', true); if (empty($content_layout)) { $content_layout = newsphere_get_option('global_content_alignment'); } ?> <div id="newsphere-settings-metabox-container" class="newsphere-settings-metabox-container"> <div id="newsphere-settings-metabox-tab-layout"> <div class="newsphere-row-content"> <!-- Select Field--> <p> <select name="newsphere-meta-content-alignment" id="newsphere-meta-content-alignment"> <option value="" <?php selected('', $content_layout); ?>> <?php _e('Set as global layout', 'newsphere') ?> </option> <option value="align-content-left" <?php selected('align-content-left', $content_layout); ?>> <?php _e('Content - Primary Sidebar', 'newsphere') ?> </option> <option value="align-content-right" <?php selected('align-content-right', $content_layout); ?>> <?php _e('Primary Sidebar - Content', 'newsphere') ?> </option> <option value="full-width-content" <?php selected('full-width-content', $content_layout); ?>> <?php _e('Full width content', 'newsphere') ?> </option> </select> </p> </div><!-- .newsphere-row-content --> </div><!-- #newsphere-settings-metabox-tab-layout --> </div><!-- #newsphere-settings-metabox-container --> <?php } endif; if (!function_exists('newsphere_save_layout_options_meta')) : /** * Save theme settings meta box value. * * @since 1.0.0 * * @param int $post_id Post ID. * @param WP_Post $post Post object. */ function newsphere_save_layout_options_meta($post_id, $post) { // Verify nonce. if (!isset($_POST['newsphere_meta_box_nonce']) || !wp_verify_nonce($_POST['newsphere_meta_box_nonce'], basename(__FILE__))) { return; } // Bail if auto save or revision. if (defined('DOING_AUTOSAVE') || is_int(wp_is_post_revision($post)) || is_int(wp_is_post_autosave($post))) { return; } // Check the post being saved == the $post_id to prevent triggering this call for other save_post events. if (empty($_POST['post_ID']) || $_POST['post_ID'] != $post_id) { return; } // Check permission. if ('page' == $_POST['post_type']) { if (!current_user_can('edit_page', $post_id)) { return; } } else if (!current_user_can('edit_post', $post_id)) { return; } $content_layout = isset($_POST['newsphere-meta-content-alignment']) ? $_POST['newsphere-meta-content-alignment'] : ''; update_post_meta($post_id, 'newsphere-meta-content-alignment', sanitize_text_field($content_layout)); } endif; add_action('save_post', 'newsphere_save_layout_options_meta', 10, 2); //Category fields meta starts if (!function_exists('newsphere_taxonomy_add_new_meta_field')) : // Add term page function newsphere_taxonomy_add_new_meta_field() { // this will add the custom meta field to the add new term page $cat_color = array( 'category-color-1' => __('Category Color 1', 'newsphere'), 'category-color-2' => __('Category Color 2', 'newsphere'), 'category-color-3' => __('Category Color 3', 'newsphere'), ); ?> <div class="form-field"> <label for="term_meta[color_class_term_meta]"><?php _e('Color Class', 'newsphere'); ?></label> <select id="term_meta[color_class_term_meta]" name="term_meta[color_class_term_meta]"> <?php foreach ($cat_color as $key => $value): ?> <option value="<?php echo esc_attr($key); ?>"><?php echo esc_html($value); ?></option> <?php endforeach; ?> </select> <p class="description"><?php _e('Select category color class. You can set appropriate categories color on "Categories" section of the theme customizer.', 'newsphere'); ?></p> </div> <?php } endif; add_action('category_add_form_fields', 'newsphere_taxonomy_add_new_meta_field', 10, 2); if (!function_exists('newsphere_taxonomy_edit_meta_field')) : // Edit term page function newsphere_taxonomy_edit_meta_field($term) { // put the term ID into a variable $t_id = $term->term_id; // retrieve the existing value(s) for this meta field. This returns an array $term_meta = get_option("category_color_$t_id"); ?> <tr class="form-field"> <th scope="row" valign="top"><label for="term_meta[color_class_term_meta]"><?php _e('Color Class', 'newsphere'); ?></label></th> <td> <?php $cat_color = array( 'category-color-1' => __('Category Color 1', 'newsphere'), 'category-color-2' => __('Category Color 2', 'newsphere'), 'category-color-3' => __('Category Color 3', 'newsphere'), ); ?> <select id="term_meta[color_class_term_meta]" name="term_meta[color_class_term_meta]"> <?php foreach ($cat_color as $key => $value): ?> <option value="<?php echo esc_attr($key); ?>"<?php selected($term_meta['color_class_term_meta'], $key); ?> ><?php echo esc_html($value); ?></option> <?php endforeach; ?> </select> <p class="description"><?php _e('Select category color class. You can set appropriate categories color on "Categories" section of the theme customizer.', 'newsphere'); ?></p> </td> </tr> <?php } endif; add_action('category_edit_form_fields', 'newsphere_taxonomy_edit_meta_field', 10, 2); if (!function_exists('save_taxonomy_color_class_meta')) : // Save extra taxonomy fields callback function. function save_taxonomy_color_class_meta($term_id) { if (isset($_POST['term_meta'])) { $t_id = $term_id; $term_meta = get_option("category_color_$t_id"); $cat_keys = array_keys($_POST['term_meta']); foreach ($cat_keys as $key) { if (isset ($_POST['term_meta'][$key])) { $term_meta[$key] = $_POST['term_meta'][$key]; } } // Save the option array. update_option("category_color_$t_id", $term_meta); } } endif; add_action('edited_category', 'save_taxonomy_color_class_meta', 10, 2); add_action('create_category', 'save_taxonomy_color_class_meta', 10, 2);