ID ) ) { $output = $post->post_excerpt; } else { // Check for more tag if ( strpos( $post->post_content, '' ) ) { $output = apply_filters( 'the_content', get_the_content() ); } else { $output = wp_trim_words( strip_shortcodes( $post->post_content ), $length ); } } $output = apply_filters('businesswp_excerpt', $output); return $output; } endif; /************************************************** **** Positioning Output ***************************************************/ if(!function_exists('businesswp_blog_entry_elements_positioning_output')): function businesswp_blog_entry_elements_positioning_output($sections){ $featured_image_position = businesswp_get_option('archive_feature_image_position'); if( is_single() ){ $featured_image_position = businesswp_get_option('single_feature_image_position'); } $image_key = array_search ('featured_image', $sections); $title_key = array_search ('title', $sections); if( $featured_image_position=='below' ){ $sections[$title_key] = 'featured_image'; $sections[$image_key] = 'title'; } return $sections; } add_filter('businesswp_blog_entry_elements_positioning','businesswp_blog_entry_elements_positioning_output'); endif;