post_content; if ( ! empty( $post_obj->post_excerpt ) ) { $source_content = $post_obj->post_excerpt; } $source_content = preg_replace( '`\[[^\]]*\]`', '', $source_content ); $trimmed_content = wp_trim_words( $source_content, $length, '...' ); return $trimmed_content; } endif; if ( ! function_exists( 'blogism_simple_breadcrumb' ) ) : /** * Simple breadcrumb. * * @since 1.0.0 */ function blogism_simple_breadcrumb() { if ( ! function_exists( 'breadcrumb_trail' ) ) { require_once get_template_directory() . '/lib/breadcrumbs/breadcrumbs.php'; } $breadcrumb_args = array( 'container' => 'div', 'show_browse' => false, ); breadcrumb_trail( $breadcrumb_args ); } endif; if ( ! function_exists( 'blogism_fonts_url' ) ) : /** * Return fonts URL. * * @since 1.0.0 * @return string Font URL. */ function blogism_fonts_url() { $fonts_url = ''; $fonts = array(); $subsets = 'latin,latin-ext'; /* translators: If there are characters in your language that are not supported by Montserrat, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Montserrat font: on or off', 'blogism' ) ) { $fonts[] = 'Montserrat:300,400,400i,500,700,700i'; } /* translators: If there are characters in your language that are not supported by Merriweather, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Merriweather font: on or off', 'blogism' ) ) { $fonts[] = 'Merriweather:300,400,700'; } if ( $fonts ) { $fonts_url = add_query_arg( array( 'family' => urlencode( implode( '|', $fonts ) ), 'subset' => urlencode( $subsets ), ), 'https://fonts.googleapis.com/css' ); } require_once get_theme_file_path( 'inc/wptt-webfont-loader.php' ); $fonts_url = wptt_get_webfont_url( $fonts_url ); return esc_url( $fonts_url ); } endif; if( ! function_exists( 'blogism_get_sidebar_options' ) ) : /** * Get sidebar options. * * @since 1.0.0 */ function blogism_get_sidebar_options() { global $wp_registered_sidebars; $output = array(); if ( ! empty( $wp_registered_sidebars ) && is_array( $wp_registered_sidebars ) ) { foreach ( $wp_registered_sidebars as $key => $sidebar ) { $output[$key] = $sidebar['name']; } } return $output; } endif; if( ! function_exists( 'blogism_primary_navigation_fallback' ) ) : /** * Fallback for primary navigation. * * @since 1.0.0 */ function blogism_primary_navigation_fallback() { echo ''; } endif; if ( ! function_exists( 'blogism_the_custom_logo' ) ) : /** * Render logo. * * @since 1.0.0 */ function blogism_the_custom_logo() { if ( function_exists( 'the_custom_logo' ) ) { the_custom_logo(); } } endif; /** * Sanitize post ID. * * @since 1.0.0 * * @param string $key Field key. * @param array $field Field detail. * @param mixed $value Raw value. * @return mixed Sanitized value. */ function blogism_widget_sanitize_post_id( $key, $field, $value ) { $output = ''; $value = absint( $value ); if ( $value ) { $not_allowed = array( 'revision', 'attachment', 'nav_menu_item' ); $post_type = get_post_type( $value ); if ( ! in_array( $post_type, $not_allowed ) && 'publish' === get_post_status( $value ) ) { $output = $value; } } return $output; } if ( ! function_exists( 'blogism_get_index_page_id' ) ) : /** * Get front index page ID. * * @since 1.0.0 * * @param string $type Type. * @return int Corresponding Page ID. */ function blogism_get_index_page_id( $type = 'front' ) { $page = ''; switch ( $type ) { case 'front': $page = get_option( 'page_on_front' ); break; case 'blog': $page = get_option( 'page_for_posts' ); break; default: break; } $page = absint( $page ); return $page; } endif; if ( ! function_exists( 'blogism_render_select_dropdown' ) ) : /** * Render select dropdown. * * @since 1.0.0 * * @param array $main_args Main arguments. * @param string $callback Callback method. * @param array $callback_args Callback arguments. * @return string Rendered markup. */ function blogism_render_select_dropdown( $main_args, $callback, $callback_args = array() ) { $defaults = array( 'id' => '', 'name' => '', 'selected' => 0, 'echo' => true, 'add_default' => false, ); $r = wp_parse_args( $main_args, $defaults ); $output = ''; $choices = array(); if ( is_callable( $callback ) ) { $choices = call_user_func_array( $callback, $callback_args ); } if ( ! empty( $choices ) || true === $r['add_default'] ) { $output = "\n"; } if ( $r['echo'] ) { echo $output; } return $output; } endif; if ( ! function_exists( 'blogism_array_splice_preserve_keys' ) ) : /** * Splice array preserving array keys. * * @param array &$input Input array. * @param int $offset Offset. * @param int $length Length. * @param array $replacement Sub array. * @return array New array. */ function blogism_array_splice_preserve_keys( &$input, $offset, $length = null, $replacement = array() ) { if ( empty( $replacement ) ) { return array_splice( $input, $offset, $length ); } $part_before = array_slice( $input, 0, $offset, $preserve_keys = true ); $part_removed = array_slice( $input, $offset, $length, $preserve_keys = true ); $part_after = array_slice( $input, $offset + $length, null, $preserve_keys = true ); $input = $part_before + $replacement + $part_after; return $part_removed; } endif; if ( ! function_exists( 'blogism_get_link_url' ) ) : /** * Return the post URL. * * Falls back to the post permalink if no URL is found in the post. * * @since 1.0.0 * * @return string The Link format URL. */ function blogism_get_link_url() { $content = get_the_content(); $has_url = get_url_in_content( $content ); return ( $has_url ) ? $has_url : apply_filters( 'the_permalink', get_permalink() ); } endif;