get_queried_object_id(); if ( $enablecontent == 'entire-site' || ( ( is_front_page() || ( is_home() && $page_for_posts != $page_id ) ) && $enablecontent == 'homepage' ) ) { if ( ( !$automobile_news_ticker = get_transient( 'automobile_news_ticker' ) ) ) { $headline = $options ['news_ticker_label']; echo ''; if ( $contentselect == 'demo-news-ticker' ) { $headline = __( 'The Latest News', 'automobile' ); } $automobile_news_ticker ='
'; if ( !empty( $headline ) ) { $automobile_news_ticker .='

'. $headline .'

'; } $automobile_news_ticker .='
'; // Select content if ( $contentselect == 'demo-news-ticker' && function_exists( 'automobile_demo_ticker' ) ) { $automobile_news_ticker .= automobile_demo_ticker( $options ); } elseif ( $contentselect == 'page-news-ticker' && function_exists( 'automobile_page_ticker' ) ) { $automobile_news_ticker .= automobile_page_ticker( $options ); } $automobile_news_ticker .='
'; set_transient( 'automobile_news_ticker', $automobile_news_ticker, 86940 ); } echo $automobile_news_ticker; } } endif; if ( ! function_exists( 'automobile_news_ticker_display_position' ) ) : /** * Homepage Featured Content Position * * @action automobile_content, automobile_after_secondary * * @since Automobile 0.1 */ function automobile_news_ticker_display_position() { // Getting data from Theme Options $options = automobile_get_theme_options(); $news_ticker_position = $options [ 'news_ticker_position' ]; if ( 'below-menu' == $news_ticker_position ) { add_action( 'automobile_after_header', 'automobile_news_ticker_display', 40 ); } else { add_action( 'automobile_content', 'automobile_news_ticker_display', 10 ); } } endif; // automobile_news_ticker_display_position add_action( 'automobile_before', 'automobile_news_ticker_display_position' ); if ( ! function_exists( 'automobile_demo_ticker' ) ) : /** * This function to display featured posts content * * @get the data value from customizer options * * @since Automobile 0.1 * */ function automobile_demo_ticker( $options ) { return '

Clinton and Obama Pushed the Trade Deal That Made the Panama Papers Scandal Possible

10-Year-old Boy Gets $10,000 Reward for Uncovering Instagram Security Flaw

Baby Rescued From Rubble Nearly Four Days After Kenya Building Collapse

Six of the Greatest Legends in Rock History to Gather for 3-Day Concert in October

'; } endif; // automobile_demo_content if ( ! function_exists( 'automobile_page_ticker' ) ) : /** * This function to display featured page content * * @param $options: automobile_theme_options from customizer * * @since Automobile 0.1 */ function automobile_page_ticker( $options ) { global $post; $quantity = $options [ 'news_ticker_number' ]; $more_link_text = $options['excerpt_more_text']; $show_content = isset( $options['news_ticker_show'] ) ? $options['news_ticker_show'] : 'excerpt'; $number_of_page = 0; // for number of pages $page_list = array(); // list of valid pages ids $automobile_page_ticker = ''; //Get valid pages for( $i = 1; $i <= $quantity; $i++ ){ if( isset ( $options['news_ticker_page_' . $i] ) && $options['news_ticker_page_' . $i] > 0 ){ $number_of_page++; $page_list = wp_parse_args( $page_list, array( $options['news_ticker_page_' . $i] ) ); } } if ( !empty( $page_list ) && $number_of_page > 0 ) { $get_featured_posts = new WP_Query( array( 'posts_per_page' => $number_of_page, 'post__in' => $page_list, 'orderby' => 'post__in', 'post_type' => 'page', )); $i=0; while ( $get_featured_posts->have_posts()) : $get_featured_posts->the_post(); if ( $i == 1 ) { $classes = 'page post-'.$post->ID.' news-ticker-title displayblock'; } else { $classes = 'page post-'.$post->ID.' news-ticker-title displaynone'; } $automobile_page_ticker .= '

' . esc_html( get_the_title() ) . '

'; endwhile; wp_reset_query(); } return $automobile_page_ticker; } endif; // automobile_page_ticker