'; } } add_action( 'wp_head', 'audioman_pingback_header' ); /** * Remove first post from blog as it is already show via recent post template */ function audioman_alter_home( $query ) { if ( $query->is_home() && $query->is_main_query() ) { $cats = get_theme_mod( 'audioman_front_page_category' ); if ( is_array( $cats ) && ! in_array( '0', $cats ) ) { $query->query_vars['category__in'] = $cats; } } } add_action( 'pre_get_posts', 'audioman_alter_home' ); /** * Function to add Scroll Up icon */ function audioman_scrollup() { $disable_scrollup = get_theme_mod( 'audioman_disable_scrollup' ); if ( $disable_scrollup ) { return; } echo '' ; } add_action( 'wp_footer', 'audioman_scrollup', 1 ); if ( ! function_exists( 'audioman_content_nav' ) ) : /** * Display navigation/pagination when applicable * * @since Audioman 1.0 */ function audioman_content_nav() { global $wp_query; // Don't print empty markup in archives if there's only one page. if ( $wp_query->max_num_pages < 2 && ( is_home() || is_archive() || is_search() ) ) { return; } $pagination_type = get_theme_mod( 'audioman_pagination_type', 'default' ); if ( ( class_exists( 'Jetpack' ) && Jetpack::is_module_active( 'infinite-scroll' ) ) || class_exists( 'Catch_Infinite_Scroll' ) ) { // Support infinite scroll plugins. the_posts_navigation(); } elseif ( 'numeric' === $pagination_type && function_exists( 'the_posts_pagination' ) ) { the_posts_pagination( array( 'prev_text' => '' . esc_html__( 'Prev', 'audioman' ) . '', 'next_text' => '' . esc_html__( 'Next', 'audioman' ) . '', 'screen_reader_text' => '' . esc_html__( 'Page', 'audioman' ) . ' ', ) ); } else { the_posts_navigation(); } } endif; // audioman_content_nav /** * Check if a section is enabled or not based on the $value parameter * @param string $value Value of the section that is to be checked * @return boolean return true if section is enabled otherwise false */ function audioman_check_section( $value ) { global $wp_query; // Get Page ID outside Loop $page_id = $wp_query->get_queried_object_id(); // Front page displays in Reading Settings $page_for_posts = get_option('page_for_posts'); return ( 'entire-site' == $value || ( ( is_front_page() || ( is_home() && intval( $page_for_posts ) !== intval( $page_id ) ) ) && 'homepage' == $value ) ); } /** * Return the first image in a post. Works inside a loop. * @param [integer] $post_id [Post or page id] * @param [string/array] $size Image size. Either a string keyword (thumbnail, medium, large or full) or a 2-item array representing width and height in pixels, e.g. array(32,32). * @param [string/array] $attr Query string or array of attributes. * @return [string] image html * * @since Audioman 1.0 */ function audioman_get_first_image( $postID, $size, $attr ) { ob_start(); ob_end_clean(); $image = ''; $output = preg_match_all('//i', get_post_field('post_content', $postID ) , $matches); if( isset( $matches [1] [0] ) ) { //Get first image $first_img = $matches [1] [0]; return ''; } return false; } function audioman_get_theme_layout() { $layout = ''; if ( is_page_template( 'templates/no-sidebar.php' ) ) { $layout = 'no-sidebar'; } elseif ( is_page_template( 'templates/right-sidebar.php' ) ) { $layout = 'right-sidebar'; } else { $layout = get_theme_mod( 'audioman_default_layout', 'no-sidebar' ); if ( is_home() || is_archive() ) { $layout = get_theme_mod( 'audioman_homepage_archive_layout', 'right-sidebar' ); } } return $layout; } function audioman_get_sidebar_id() { $sidebar = ''; $layout = audioman_get_theme_layout(); $sidebaroptions = ''; if ( 'no-sidebar-full-width' === $layout || 'no-sidebar' === $layout ) { return $sidebar; } // WooCommerce Shop Page excluding Cart and checkout. if ( class_exists( 'WooCommerce' ) && is_woocommerce() ) { $shop_id = get_option( 'woocommerce_shop_page_id' ); $sidebaroptions = get_post_meta( $shop_id, 'audioman-sidebar-option', true ); } else { global $post, $wp_query; // 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(); // Blog Page or Front Page setting in Reading Settings. if ( $page_id == $page_for_posts || $page_id == $page_on_front ) { $sidebaroptions = get_post_meta( $page_id, 'audioman-sidebar-option', true ); } elseif ( is_singular() ) { if ( is_attachment() ) { $parent = $post->post_parent; $sidebaroptions = get_post_meta( $parent, 'audioman-sidebar-option', true ); } else { $sidebaroptions = get_post_meta( $post->ID, 'audioman-sidebar-option', true ); } } } if ( is_active_sidebar( 'sidebar-1' ) ) { $sidebar = 'sidebar-1'; // Primary Sidebar. } return $sidebar; } if ( ! function_exists( 'audioman_truncate_phrase' ) ) : /** * Return a phrase shortened in length to a maximum number of characters. * * Result will be truncated at the last white space in the original string. In this function the word separator is a * single space. Other white space characters (like newlines and tabs) are ignored. * * If the first `$max_characters` of the string does not contain a space character, an empty string will be returned. * * @since Audioman 1.0 * * @param string $text A string to be shortened. * @param integer $max_characters The maximum number of characters to return. * * @return string Truncated string */ function audioman_truncate_phrase( $text, $max_characters ) { $text = trim( $text ); if ( mb_strlen( $text ) > $max_characters ) { //* Truncate $text to $max_characters + 1 $text = mb_substr( $text, 0, $max_characters + 1 ); //* Truncate to the last space in the truncated string $text = trim( mb_substr( $text, 0, mb_strrpos( $text, ' ' ) ) ); } return $text; } endif; //audioman_truncate_phrase if ( ! function_exists( 'audioman_get_the_content_limit' ) ) : /** * Return content stripped down and limited content. * * Strips out tags and shortcodes, limits the output to `$max_char` characters, and appends an ellipsis and more link to the end. * * @since Audioman 1.0 * * @param integer $max_characters The maximum number of characters to return. * @param string $more_link_text Optional. Text of the more link. Default is "(more...)". * @param bool $stripteaser Optional. Strip teaser content before the more text. Default is false. * * @return string Limited content. */ function audioman_get_the_content_limit( $max_characters, $more_link_text = '(more...)', $stripteaser = false ) { $content = get_the_content( '', $stripteaser ); // Strip tags and shortcodes so the content truncation count is done correctly. $content = strip_tags( strip_shortcodes( $content ), apply_filters( 'get_the_content_limit_allowedtags', '