Mountain Risk Caution

Chocolate bar tiramisu chocolate cake jelly-o cotton candy. Apple pie bear claw jelly-o tootsie roll chocolate halvah jujubes jujubes biscuit.

Rhino Nepal National Park

Chocolate cake sweet pie chocolate bar. Danish tart cookie topping tootsie roll pie tart jujubes donut. Dragee bear claw tootsie roll chocolate cake.

Nepal Yak Tibetan

Marshmallow cotton candy candy cotton candy cake apple pie. Jelly-o donut cotton candy. Cheesecake ice cream chupa chups fruitcake jelly-o marshmallow.

White Water Rafting

Marshmallow chocolate muffin gingerbread chupa chups carrot cake wafer cheesecake. Pudding chocolate cake lollipop lollipop tootsie roll jelly souffle bonbon sugar plum.
'; echo $adventurous_default_featured_content; } } if ( ! function_exists( 'adventurous_homepage_featured_content' ) ) : /** * Template for Homepage Featured Content * * To override this in a child theme * simply create your own adventurous_homepage_featured_content(), and that function will be used instead. * * @uses adventurous_main action to add it in the header * @since Adventurous 1.0 */ function adventurous_homepage_featured_content() { //delete_transient( 'adventurous_homepage_featured_content' ); // Getting data from Theme Options $options = adventurous_get_options(); $quantity = $options['homepage_featured_qty']; $headline = $options['homepage_featured_headline']; $subheadline = $options['homepage_featured_subheadline']; $layouts = $options['homepage_featured_layout']; if ( !$adventurous_homepage_featured_content = get_transient( 'adventurous_homepage_featured_content' ) ) { //Checking Layout if ( 'four-columns' == $layouts ) { $classes = "layout-four"; } else { $classes = "layout-three"; } //Checking headline and subheadline $adventurous_homepage_featured_content = '
'; if ( !empty( $headline ) || !empty( $subheadline ) ) { $adventurous_homepage_featured_content .= ''; } //Checking Featured Content Details if ( !empty( $options['homepage_featured_image'] ) || !empty( $options['homepage_featured_title'] ) || !empty( $options['homepage_featured_content'] ) ) { $adventurous_homepage_featured_content .= '
'; for ( $i = 1; $i <= $quantity; $i++ ) { if ( !empty ( $options['homepage_featured_base'][ $i ] ) ) { $target = '_blank'; } else { $target = '_self'; } //Checking Link if ( !empty ( $options['homepage_featured_url'][ $i ] ) ) { //support qTranslate plugin if ( function_exists( 'qtrans_convertURL' ) ) { $link = qtrans_convertURL($options['homepage_featured_url'][ $i ]); } else { $link = $options['homepage_featured_url'][ $i ]; } } else { $link = '#'; } //Checking Title if ( !empty ( $options['homepage_featured_title'][ $i ] ) ) { $title = $options['homepage_featured_title'][ $i ]; } else { $title = ''; } if ( !empty ( $options['homepage_featured_title'][ $i ] ) || !empty ( $options['homepage_featured_content'][ $i ] ) || !empty ( $options['homepage_featured_image'][ $i ] ) ) { $adventurous_homepage_featured_content .= '
'; if ( !empty ( $options['homepage_featured_image'][ $i ] ) ) { $adventurous_homepage_featured_content .= ' '; } if ( !empty ( $options['homepage_featured_title'][ $i ] ) || !empty ( $options['homepage_featured_content'][ $i ] ) ) { $adventurous_homepage_featured_content .= '
'; if ( !empty ( $options['homepage_featured_title'][ $i ] ) ) { $adventurous_homepage_featured_content .= '

' . $title . '

'; } if ( !empty ( $options['homepage_featured_content'][ $i ] ) ) { $adventurous_homepage_featured_content .= '
' . $options['homepage_featured_content'][ $i ] . '
'; } $adventurous_homepage_featured_content .= '
'; } $adventurous_homepage_featured_content .= '
'; } } $adventurous_homepage_featured_content .= '
'; } $adventurous_homepage_featured_content .= '
'; echo $adventurous_homepage_featured_content; } } endif; // adventurous_homepage_featured_content /** * Homepage Featured Content * */ function adventurous_homepage_featured_display() { global $wp_query; $options = adventurous_get_options(); $enablefeatured = $options['enable-featured']; // Front page displays in Reading Settings $page_on_front = get_option('page_on_front') ; $page_for_posts = get_option('page_for_posts'); // Get Page ID outside Loop $page_id = $wp_query->get_queried_object_id(); if ( ( 'allpage' == $enablefeatured ) || ( ( is_front_page() || ( is_home() && $page_for_posts != $page_id ) ) && 'homepage' == $enablefeatured ) ) { if ( !empty( $options['homepage_featured_headline'] ) || !empty( $options['homepage_featured_subheadline'] ) || !empty( $options['homepage_featured_image'] ) || !empty( $options['homepage_featured_title'] ) || !empty( $options['homepage_featured_content'] ) ) { adventurous_homepage_featured_content(); } else { adventurous_default_featured_content(); } } } // adventurous_homepage_featured_content add_action( 'adventurous_before_main', 'adventurous_homepage_featured_display', 80 );