get( 'Version' ); wp_enqueue_style( 'sportsmag-parent-style', get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'sportsmag-responsive', get_stylesheet_directory_uri() . '/css/responsive.css', esc_attr( $sportsmag_theme_version ) ); wp_enqueue_script( 'sportsmag-custom-scripts', get_stylesheet_directory_uri() . '/js/custom-scripts.js', array('jquery'), esc_attr( $sportsmag_theme_version ) ); $menu_sticky_option = of_get_option( 'menu_sticky', '1' ); if( !empty( $menu_sticky_option ) && $menu_sticky_option == 1 ) { wp_enqueue_script( 'sportsmag-sticky-menu-setting', get_stylesheet_directory_uri(). '/js/sportsmag-sticky-setting.js', array( 'jquery-sticky' ), esc_attr($sportsmag_theme_version), true ); } } add_action('wp_enqueue_scripts', 'sportsmag_styles_scripts'); function sportsmag_deque_script_settings() { wp_dequeue_script( 'accesspress-mag-sticky-menu-setting' ); } add_action( 'wp_footer', 'sportsmag_deque_script_settings', 11 ); /* ================================================================================================================================ */ /** * Add some option in theme option */ function child_theme_options($options) { $options[] = array( 'name' => __( 'Child Theme Settings', 'sportsmag' ), 'type' => 'heading' ); $options[] = array( 'name' => __( 'Home Page Settings', 'sportsmag' ), 'type' => 'groupstart', 'id' => 'child_theme_home_settings' ); $options[] = array( 'name' => __( 'Latest Articles', 'sportsmag' ), 'desc' => __( 'Show or hide latest ariticle section', 'sportsmag' ), 'id' => 'popular_section_option', 'on' => __( 'Show', 'sportsmag' ), 'off' => __( 'Hide', 'sportsmag' ), 'std' => '1', 'type' => 'switch' ); $options[] = array( 'name' => __( 'Latest Articles Title', 'sportsmag' ), 'desc' => __( 'Add block name as you like (example: Latest Articles)', 'sportsmag' ), 'id' => 'popular_block_name', 'type' => 'text', 'std' => __( 'Latest Articles', 'sportsmag' ), ); $options[] = array( 'name' => __( 'Youtube Lists', 'sportsmag' ), 'desc' => __( 'Show or hide youtube playlist section', 'sportsmag' ), 'id' => 'youtube_section_option', 'on' => __( 'Show', 'sportsmag' ), 'off' => __( 'Hide', 'sportsmag' ), 'std' => '1', 'type' => 'switch' ); $options[] = array( 'name' => __( 'Youtube Lists Title', 'sportsmag' ), 'desc' => __( 'Add your title for youtube list section', 'sportsmag' ), 'id' => 'youtube_list_title', 'type' => 'text', 'std' => 'Youtube Videos', ); $options[] = array( 'name' => __( 'Youtube Video Ids', 'sportsmag' ), 'desc' => __( "Add youtube id's separated by comma (ex: xrt27dZ7DOA, u8--jALkijM, HusniLw9i68):", 'sportsmag' ), 'id' => 'youtube_list_ids', 'type' => 'text', 'std' => ' ', ); $options[] = array( 'type' => 'groupend' ); return $options; } add_filter('of_options', 'child_theme_options'); /* ================================================================================================================================ */ /** * Disable header ad widget area */ add_action( 'widgets_init', 'disable_header_ad_widgets', 50 ); function disable_header_ad_widgets() { unregister_sidebar( 'accesspress-mag-header-ad' ); } /* ================================================================================================================================ */ /** * Function to replace slider in SportsMag */ add_action( 'sportsmag_grid', 'sportsmag_grid_callback', 10 ); if ( !function_exists( 'sportsmag_grid_callback' ) ): function sportsmag_grid_callback() { $sportsmag_slider_posts_option = of_get_option( 'slider_post_option', ' ' ); $sportsmag_slider_category = of_get_option( 'homepage_slider_category' ); $sportsmag_grid_args = array( 'post_type' => 'post', 'post_status' => 'publish', 'posts_per_page' => 5, 'order' => 'DESC', 'meta_query' => array( array( 'key' => '_thumbnail_id', 'compare' => '!=', 'value' => null ) ) ); if ( ( $sportsmag_slider_posts_option == 'cat' ) && ( !empty( $sportsmag_slider_category ) ) ) { $sportsmag_grid_args['category_name'] = $sportsmag_slider_category; } $sportsmag_grid_query = new WP_Query( $sportsmag_grid_args ); $sportsmag_grid_count = 0; if ( $sportsmag_grid_query->have_posts() ) { ?>
have_posts() ) { $sportsmag_grid_count++; $sportsmag_grid_query->the_post(); $sportsmag_post_id = get_the_ID(); $sportsmag_image_id = get_post_thumbnail_id(); $sportsmag_image_path = wp_get_attachment_image_src( $sportsmag_image_id, 'accesspress-mag-slider-big-thumb', true ); $sportsmag_image_path_small = wp_get_attachment_image_src( $sportsmag_image_id, 'accesspress-mag-singlepost-style1', true ); $sportsmag_image_alt = get_post_meta( $sportsmag_image_id, '_wp_attachment_image_alt', true ); $categories = get_the_category(); foreach ( $categories as $cat ) { $sportsmag_cat_name = $cat->name; $sportsmag_cat_id = $cat->term_id; $sportsmag_cat_link = get_category_link( $sportsmag_cat_id ); } if ( $sportsmag_grid_count == 1 ) { ?>
'; } ?>
'; } } } ?>
' . esc_attr( $list_title ) . '
'; ?> '; foreach ( $seperate_id as $key => $value ) { $f_count++; $video_url = $http . '://www.youtube.com/watch?v=' . $value; ?>
550 ) ); ?>
'; echo '
'; foreach ( $seperate_id as $key => $value ) { $t_count++; $response = wp_remote_get( 'https://www.googleapis.com/youtube/v3/videos?id='. $value .'&part=id,contentDetails,snippet&key=AIzaSyA_Ze-UVGvIN6t94Glex1rYUM3SFB7Kz8o', array( 'sslverify' => false ) ); if ( is_wp_error( $response ) ) { break; } $data = wp_remote_retrieve_body($response); if ( is_wp_error( $data ) ) { break; } $obj = json_decode($data, true); $video_thumb = $obj['items'][0]['snippet']['thumbnails']['default']['url']; $video_title = $obj['items'][0]['snippet']['title']; $video_duration = sportsmag_covtime( $obj['items'][0]['contentDetails']['duration'] ); ?>
'; } }//endif $sportsmag_list_option } endif; function sportsmag_covtime( $duration ) { preg_match_all( '/(\d+)/', $duration ,$parts ); //Put in zeros if we have less than 3 numbers. if ( count( $parts[0] ) == 1 ) { array_unshift( $parts[0], "0", "0" ); } elseif ( count( $parts[0] ) == 2 ) { array_unshift( $parts[0], "0" ); } $sec_init = $parts[0][2]; $seconds = $sec_init%60; $seconds = str_pad( $seconds, 2, "0", STR_PAD_LEFT ); $seconds_overflow = floor( $sec_init/60 ); $min_init = $parts[0][1] + $seconds_overflow; $minutes = ( $min_init )%60; $minutes = str_pad( $minutes, 2, "0", STR_PAD_LEFT ); $minutes_overflow = floor( ( $min_init )/60 ); $hours = $parts[0][0] + $minutes_overflow; if($hours != 0) { return $hours.':'.$minutes.':'.$seconds; } else { return $minutes.':'.$seconds; } } /* ================================================================================================================================ */ /*Modified posted on function for child theme*/ function accesspress_mag_posted_on() { $sportsmag_show_post_date = of_get_option( 'post_show_date' ); $sportsmag_show_author = of_get_option( 'show_author_name' ); $time_string = ''; if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) { $time_string = ''; } $time_string = sprintf( $time_string, esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ), esc_attr( get_the_modified_date( 'c' ) ), esc_html( get_the_modified_date() ) ); if( $sportsmag_show_post_date == 1 ){ $posted_on = sprintf( _x( '%s', 'post date', 'sportsmag' ),$time_string //'' . $time_string . '' ); } else { $posted_on = ''; } if( $sportsmag_show_author == 1 ){ $byline = sprintf( _x( '%s', 'post author', 'sportsmag' ), '' . esc_html( get_the_author() ) . '' ); } else { $byline=''; } echo ' ' . $byline . ' - ' . $posted_on . ''; }