get_queried_object_id(); if ( 'entire-site' == $enablecontent || ( ( is_front_page() || ( is_home() && $page_for_posts != $page_id ) ) && 'homepage' == $enablecontent ) ) { if ( ( !$catchresponsive_featured_content = get_transient( 'catchresponsive_featured_content_display' ) ) ) { $layouts = $options['featured_content_layout']; $headline = $options['featured_content_headline']; $subheadline = $options['featured_content_subheadline']; echo ''; if ( !empty( $layouts ) ) { $classes = $layouts ; } if ( 'demo-featured-content' == $contentselect ) { $classes .= ' demo-featured-content' ; $headline = __( 'Featured Content', 'catch-responsive' ); $subheadline = __( 'Here you can showcase the x number of Featured Content. You can edit this Headline, Subheadline and Feaured Content from "Appearance -> Customize -> Featured Content Options".', 'catch-responsive' ); } elseif ( 'featured-page-content' == $contentselect ) { $classes .= ' featured-page-content' ; } //Check Featured Content Position $featured_content_position = $options['featured_content_position']; if ( '1' == $featured_content_position ) { $classes .= ' border-top' ; } $catchresponsive_featured_content =' '; set_transient( 'catchresponsive_featured_content', $catchresponsive_featured_content, 86940 ); } echo $catchresponsive_featured_content; } } endif; if ( ! function_exists( 'catchresponsive_featured_content_display_position' ) ) : /** * Homepage Featured Content Position * * @action catchresponsive_content, catchresponsive_after_secondary * * @since Catch Responsive 1.0 */ function catchresponsive_featured_content_display_position() { // Getting data from Theme Options $options = catchresponsive_get_theme_options(); $featured_content_position = $options['featured_content_position']; if ( '1' != $featured_content_position ) { add_action( 'catchresponsive_before_content', 'catchresponsive_featured_content_display', 40 ); } else { add_action( 'catchresponsive_after_content', 'catchresponsive_featured_content_display', 40 ); } } endif; // catchresponsive_featured_content_display_position add_action( 'catchresponsive_before', 'catchresponsive_featured_content_display_position' ); if ( ! function_exists( 'catchresponsive_demo_content' ) ) : /** * This function to display featured posts content * * @get the data value from customizer options * * @since Catch Responsive 1.0 * */ function catchresponsive_demo_content( $options ) { $catchresponsive_demo_content = '

Central Park

Central Park is is the most visited urban park in the United States as well as one of the most filmed locations in the world. It was opened in 1857 and is expanded in 843 acres of city-owned land.

Home Office

It might be work, but it doesn\'t have to feel like it. All you need is a comfortable desk, nice laptop, home office furniture that keeps things organized, and the right lighting for the job.

Vespa Scooter

The Vespa Scooter has evolved from a single model motor scooter manufactured in the year 1946 by Piaggio & Co. S.p.A. of Pontedera, Italy-to a full line of scooters, today owned by Piaggio.
'; if ( 'layout-four' == $options['featured_content_layout']) { $catchresponsive_demo_content .= '

Antique Clock

Antique clocks increase in value with the rarity of the design, their condition, and appeal in the market place. Many different materials were used in antique clocks.
'; } return $catchresponsive_demo_content; } endif; // catchresponsive_demo_content if ( ! function_exists( 'catchresponsive_page_content' ) ) : /** * This function to display featured page content * * @param $options: catchresponsive_theme_options from customizer * * @since Catch Responsive 1.0 */ function catchresponsive_page_content( $options ) { global $post; $quantity = $options['featured_content_number']; $more_link_text = $options['excerpt_more_text']; $show_content = $options['featured_content_show']; $catchresponsive_page_content = ''; $number_of_page = 0; // for number of pages $page_list = array(); // list of valid pages ids //Get valid pages for( $i = 1; $i <= $quantity; $i++ ){ if ( isset ( $options['featured_content_page_' . $i] ) && $options['featured_content_page_' . $i] > 0 ){ $number_of_page++; $page_list = array_merge( $page_list, array( $options['featured_content_page_' . $i] ) ); } } if ( !empty( $page_list ) && $number_of_page > 0 ) { $loop = new WP_Query( array( 'posts_per_page' => $number_of_page, 'post__in' => $page_list, 'orderby' => 'post__in', 'post_type' => 'page', )); $i=0; while ( $loop->have_posts()) : $loop->the_post(); $i++; $title_attribute = the_title_attribute( array( 'before' => __( 'Permalink to: ', 'catch-responsive' ), 'echo' => false ) ); $excerpt = get_the_excerpt(); $catchresponsive_page_content .= '
'; if ( has_post_thumbnail() ) { $catchresponsive_page_content .= ' '; } else { $catchresponsive_first_image = catchresponsive_get_first_image( $post->ID, 'catchresponsive-featured-content', array( 'title' => $title_attribute, 'alt' => $title_attribute, 'class' => 'pngfix' ) ); if ( '' != $catchresponsive_first_image ) { $catchresponsive_page_content .= ' '; } } $catchresponsive_page_content .= '

' . the_title( '','', false ) . '

'; if ( 'excerpt' == $show_content ) { $catchresponsive_page_content .= '

' . $excerpt . '

'; } elseif ( 'full-content' == $show_content ) { $content = apply_filters( 'the_content', get_the_content() ); $content = str_replace( ']]>', ']]>', $content ); $catchresponsive_page_content .= '
' . wp_kses_post( $content ) . '
'; } $catchresponsive_page_content .= '
'; endwhile; wp_reset_postdata(); } return $catchresponsive_page_content; } endif; // catchresponsive_page_content