HEX
Server: Apache
System: Linux 162-240-236-42.bluehost.com 3.10.0-1160.114.2.el7.x86_64 #1 SMP Wed Mar 20 15:54:52 UTC 2024 x86_64
User: bt667 (1004)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /home/bt667/public_html/wp-content/themes/news-event/inc/metaboxes/metabox.php
<?php
/**
 * Adds custom meta boxes
 * 
 * @package News Event
 * @since 1.0.0
 */

 if( ! function_exists( 'news_event_add_author_social_meta_fields' ) ) :
    /**
     * Add new fields above 'Update' button user page.
     *
     * @param WP_User $user User object.
     */
    function news_event_add_author_social_meta_fields( $user ) {
        $facebook_url = ( get_the_author_meta( 'facebook_url', $user->ID ) ) ? esc_url( get_the_author_meta( 'facebook_url', $user->ID ) ) : '';
        $twitter_url = ( get_the_author_meta( 'twitter_url', $user->ID ) ) ? esc_url( get_the_author_meta( 'twitter_url', $user->ID ) ) : '';
        $linkedin_url = ( get_the_author_meta( 'linkedin_url', $user->ID ) ) ? esc_url( get_the_author_meta( 'linkedin_url', $user->ID ) ) : '';
        $instagram_url = ( get_the_author_meta( 'instagram_url', $user->ID ) ) ? esc_url( get_the_author_meta( 'instagram_url', $user->ID ) ) : '';
        ?>
        <h2><?php esc_html_e( 'Social Networks', 'news-event' ); ?></h2>
        <table class="form-table">
            <tr>
                <th><label for="facebook_url"><?php esc_html_e( 'Facebook Url', 'news-event' ); ?></label></th>
                <td>
                    <input type="url" name="facebook_url" id="facebook_url" value="<?php echo esc_url( $facebook_url ); ?>" class="regular-text code">
                </td>
            </tr>
            <tr>
                <th><label for="twitter_url"><?php esc_html_e( 'Twitter Url', 'news-event' ); ?></label></th>
                <td>
                    <input type="url" name="twitter_url" id="twitter_url" value="<?php echo esc_url( $twitter_url ); ?>" class="regular-text code">
                </td>
            </tr>
            <tr>
                <th><label for="linkedin_url"><?php esc_html_e( 'Linkedin Url', 'news-event' ); ?></label></th>
                <td>
                    <input type="url" name="linkedin_url" id="linkedin_url" value="<?php echo esc_url( $linkedin_url ); ?>" class="regular-text code">
                </td>
            </tr>
            <tr>
                <th><label for="instagram_url"><?php esc_html_e( 'Instagram Url', 'news-event' ); ?></label></th>
                <td>
                    <input type="url" name="instagram_url" id="instagram_url" value="<?php echo esc_url( $instagram_url ); ?>" class="regular-text code">
                </td>
            </tr>
        </table>
        <?php
    }
    add_action( 'show_user_profile', 'news_event_add_author_social_meta_fields' );
    add_action( 'edit_user_profile', 'news_event_add_author_social_meta_fields' );
endif;

if( ! function_exists( 'news_event_save_author_social_meta_fields' ) ) :
    /**
     * Save additional profile fields.
     *
     * @param  int $user_id Current user ID.
     */
    function news_event_save_author_social_meta_fields( $user_id ) {
        if ( ! current_user_can( 'edit_user', $user_id ) ) {
        return false;
        }
        $facebook_url = isset( $_POST['facebook_url'] ) ? esc_url( $_POST['facebook_url'] ) : '';
        update_user_meta( $user_id, 'facebook_url', esc_url( $facebook_url ) );

        $twitter_url = isset( $_POST['twitter_url'] ) ? esc_url( $_POST['twitter_url'] ) : '';
        update_user_meta( $user_id, 'twitter_url', esc_url( $twitter_url ) );

        $linkedin_url = isset( $_POST['linkedin_url'] ) ? esc_url( $_POST['linkedin_url'] ) : '';
        update_user_meta( $user_id, 'linkedin_url', esc_url( $linkedin_url ) );

        $instagram_url = isset( $_POST['instagram_url'] ) ? esc_url( $_POST['instagram_url'] ) : '';
        update_user_meta( $user_id, 'instagram_url', esc_url( $instagram_url ) );
    }

    add_action( 'personal_options_update', 'news_event_save_author_social_meta_fields' );
    add_action( 'edit_user_profile_update', 'news_event_save_author_social_meta_fields' );
endif;

function news_event_post_meta_scripts($hook) {
    if( ! in_array( $hook, [ 'post.php', 'edit-tags.php', 'term.php', 'post-new.php' ] ) ) {
        return;
    }
    wp_enqueue_style( 'news-event-metaboxes', get_template_directory_uri() . '/inc/metaboxes/assets/metabox.css', array(), NEWS_EVENT_VERSION );
	wp_enqueue_script( 'news-event-metaboxes', get_template_directory_uri() . '/inc/metaboxes/assets/metabox.js', array( 'jquery' ), NEWS_EVENT_VERSION, true );
}
add_action( 'admin_enqueue_scripts', 'news_event_post_meta_scripts' );

require get_template_directory() . '/inc/metaboxes/post-meta.php'; // post meta handlers
require get_template_directory() . '/inc/metaboxes/archive-meta.php'; // archive meta handlers