post_content;
if ( ! empty( $post_object->post_excerpt ) ) {
$source_content = $post_object->post_excerpt;
}
$source_content = strip_shortcodes( $source_content );
$trimmed_content = wp_trim_words( $source_content, $length, '…' );
return $trimmed_content;
}
endif;
if ( ! function_exists( 'corporate_key_breadcrumb' ) ) :
/**
* Breadcrumb.
*
* @since 1.0.0
*/
function corporate_key_breadcrumb() {
if ( ! function_exists( 'breadcrumb_trail' ) ) {
require_once trailingslashit( get_template_directory() ) . 'vendors/breadcrumbs/breadcrumbs.php';
}
$breadcrumb_args = array(
'container' => 'div',
'show_browse' => false,
);
breadcrumb_trail( $breadcrumb_args );
}
endif;
if ( ! function_exists( 'corporate_key_fonts_url' ) ) :
/**
* Return fonts URL.
*
* @since 1.0.0
* @return string Font URL.
*/
function corporate_key_fonts_url() {
$fonts_url = '';
$fonts = array();
$subsets = 'latin,latin-ext';
/* translators: If there are characters in your language that are not supported by Open Sans, translate this to 'off'. Do not translate into your own language. */
if ( 'off' !== _x( 'on', 'Open Sans font: on or off', 'corporate-key' ) ) {
$fonts[] = 'Open Sans:400,700';
}
/* translators: If there are characters in your language that are not supported by Roboto Condensed, translate this to 'off'. Do not translate into your own language. */
if ( 'off' !== _x( 'on', 'Roboto Condensed font: on or off', 'corporate-key' ) ) {
$fonts[] = 'Roboto Condensed:100,400,500,600';
}
if ( $fonts ) {
$fonts_url = add_query_arg( array(
'family' => urlencode( implode( '|', $fonts ) ),
'subset' => urlencode( $subsets ),
), 'https://fonts.googleapis.com/css' );
}
return $fonts_url;
}
endif;
if ( ! function_exists( 'corporate_key_get_sidebar_options' ) ) :
/**
* Get sidebar options.
*
* @since 1.0.0
*/
function corporate_key_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( 'corporate_key_primary_navigation_fallback' ) ) :
/**
* Fallback for primary navigation.
*
* @since 1.0.0
*/
function corporate_key_primary_navigation_fallback() {
echo '
';
}
endif;
if ( ! function_exists( 'corporate_key_the_custom_logo' ) ) :
/**
* Render logo.
*
* @since 2.0
*/
function corporate_key_the_custom_logo() {
if ( function_exists( 'the_custom_logo' ) ) {
the_custom_logo();
}
}
endif;
if ( ! function_exists( 'corporate_key_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 corporate_key_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( 'corporate_key_get_numbers_dropdown_options' ) ) :
/**
* Returns numbers dropdown options.
*
* @since 1.0.0
*
* @param int $min Min.
* @param int $max Max.
* @param string $prefix Prefix.
* @param string $suffix Suffix.
* @return array Options array.
*/
function corporate_key_get_numbers_dropdown_options( $min = 1, $max = 4, $prefix = '', $suffix = '' ) {
$output = array();
if ( $min <= $max ) {
for ( $i = $min; $i <= $max; $i++ ) {
$string = $prefix . $i . $suffix;
$output[ $i ] = $string;
}
}
return $output;
}
endif;
if ( ! function_exists( 'corporate_key_message_front_page_widget_area' ) ) :
/**
* Show default message in front page widget area.
*
* @since 1.0.0
*/
function corporate_key_message_front_page_widget_area() {
// Welcome.
$args = array(
'title' => esc_html__( 'Welcome to Corporate Key', 'corporate-key' ),
'filter' => true,
'layout' => 2,
'primary_button_url' => esc_url( admin_url( 'widgets.php' ) ),
'primary_button_text' => esc_html__( 'Add Widgets', 'corporate-key' ),
'secondary_button_url' => esc_url( admin_url( 'widgets.php' ) ),
'secondary_button_text' => esc_html__( 'Add Widgets', 'corporate-key' ),
'text' => esc_html__( 'You are seeing this because there is no any widget in Front Page Widget Area. Go to Appearance->Widgets in admin panel to add widgets. All these widgets will be replaced when you start adding widgets.', 'corporate-key' ),
);
$widget_args = array(
'before_title' => '',
'before_widget' => '',
);
the_widget( 'Corporate_Key_Call_To_Action_Widget', $args, $widget_args );
// Latest news.
$args = array(
'title' => esc_html__( 'Latest News', 'corporate-key' ),
'subtitle' => esc_html__( 'What we are doing.', 'corporate-key' ),
);
$widget_args = array(
'before_title' => '',
'before_widget' => '',
);
the_widget( 'Corporate_Key_Latest_News_Widget', $args, $widget_args );
}
endif;