bloghill_get_svg( array( 'icon' => 'up' ) ) . '' . esc_html__( 'Older', 'bloghill' ) . '',
'next_text' => '' . esc_html__( 'Next', 'bloghill' ) . '' . bloghill_get_svg( array( 'icon' => 'up' ) ),
) );
elseif ( in_array( $pagination, array( 'infinite', 'numeric' ) ) ) :
the_posts_pagination( array(
'mid_size' => 4,
'prev_text' => bloghill_get_svg( array( 'icon' => 'up' ) ),
'next_text' => bloghill_get_svg( array( 'icon' => 'up' ) ) ,
) );
endif;
}
}
endif;
add_action( 'bloghill_action_post_pagination', 'bloghill_post_pagination', 10 );
if ( ! function_exists( 'bloghill_post_pagination' ) ) :
/**
* post pagination.
*
* @since Bloghill 1.0.0
*/
function bloghill_post_pagination() {
the_post_navigation( array(
'prev_text' => bloghill_get_svg( array( 'icon' => 'up' ) ) . '%title',
'next_text' => '%title' . bloghill_get_svg( array( 'icon' => 'up' ) ),
) );
}
endif;
if ( ! function_exists( 'bloghill_excerpt_more' ) ) :
// Read more
function bloghill_excerpt_more( $more ){
if ( is_admin() ) {
return $more;
}
return '…';
}
endif;
add_filter( 'excerpt_more', 'bloghill_excerpt_more' );
if ( ! function_exists( 'bloghill_trim_content' ) ) :
/**
* custom excerpt function
*
* @since Bloghill 1.0.0
* @return no of words to display
*/
function bloghill_trim_content( $length = 40, $post_obj = null ) {
global $post;
if ( is_null( $post_obj ) ) {
$post_obj = $post;
}
$length = absint( $length );
if ( $length < 1 ) {
$length = 40;
}
$source_content = $post_obj->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 apply_filters( 'bloghill_trim_content', $trimmed_content );
}
endif;
if ( ! function_exists( 'bloghill_layout' ) ) :
/**
* Check home page layout option
*
* @since Bloghill 1.0.0
*
* @return string Bloghill layout value
*/
function bloghill_layout() {
$options = bloghill_get_theme_options();
$sidebar_position = $options['sidebar_position'];
$sidebar_position_post = $options['post_sidebar_position'];
$sidebar_position_page = $options['page_sidebar_position'];
$sidebar_position = apply_filters( 'bloghill_sidebar_position', $sidebar_position );
// Check if single and static blog page
if ( is_singular() || is_home() ) {
if ( is_home() ) {
$post_sidebar_position = get_post_meta( get_option( 'page_for_posts' ), 'bloghill-sidebar-position', true );
} else {
$post_sidebar_position = get_post_meta( get_the_ID(), 'bloghill-sidebar-position', true );
}
if ( isset( $post_sidebar_position ) && ! empty( $post_sidebar_position ) ) {
$sidebar_position = $post_sidebar_position;
} elseif ( is_single() ) {
$sidebar_position = $sidebar_position_post;
} elseif ( is_page() ) {
$sidebar_position = $sidebar_position_page;
}
}
return $sidebar_position;
}
endif;
/**
* Add SVG definitions to the footer.
*/
function bloghill_include_svg_icons() {
// Define SVG sprite file.
$svg_icons = get_template_directory() . '/assets/images/svg-icons.svg';
// If it exists, include it.
if ( file_exists( $svg_icons ) ) {
require $svg_icons;
}
}
add_action( 'wp_footer', 'bloghill_include_svg_icons', 9999 );
/**
* Return SVG markup.
*
* @param array $args {
* Parameters needed to display an SVG.
*
* @type string $icon Required SVG icon filename.
* @type string $title Optional SVG title.
* @type string $desc Optional SVG description.
* }
* @return string SVG markup.
*/
function bloghill_get_svg( $args = array() ) {
// Make sure $args are an array.
if ( empty( $args ) ) {
return esc_html__( 'Please define default parameters in the form of an array.', 'bloghill' );
}
// Define an icon.
if ( false === array_key_exists( 'icon', $args ) ) {
return esc_html__( 'Please define an SVG icon filename.', 'bloghill' );
}
// Set defaults.
$defaults = array(
'icon' => '',
'title' => '',
'desc' => '',
'class' => '',
'fallback' => false,
);
// Parse args.
$args = wp_parse_args( $args, $defaults );
// Set aria hidden.
$aria_hidden = ' aria-hidden="true"';
// Set ARIA.
$aria_labelledby = '';
/*
* Theme Palace doesn't use the SVG title or description attributes; non-decorative icons are described with .screen-reader-text.
*
* However, child themes can use the title and description to add information to non-decorative SVG icons to improve accessibility.
*
* Example 1 with title: 'arrow-right', 'title' => __( 'This is the title', 'textdomain' ) ) ); ?>
*
* Example 2 with title and description: 'arrow-right', 'title' => __( 'This is the title', 'textdomain' ), 'desc' => __( 'This is the description', 'textdomain' ) ) ); ?>
*
* See https://www.paciellogroup.com/blog/2013/12/using-aria-enhance-svg-accessibility/.
*/
if ( $args['title'] ) {
$aria_hidden = '';
$unique_id = uniqid();
$aria_labelledby = ' aria-labelledby="title-' . esc_attr( $unique_id ) . '"';
if ( $args['desc'] ) {
$aria_labelledby = ' aria-labelledby="title-' . esc_attr( $unique_id ) . ' desc-' . esc_attr( $unique_id ) . '"';
}
}
// Begin SVG markup.
$svg = '';
return $svg;
}
/**
* Add dropdown icon if menu item has children.
*
* @param string $title The menu item's title.
* @param object $item The current menu item.
* @param array $args An array of wp_nav_menu() arguments.
* @param int $depth Depth of menu item. Used for padding.
* @return string $title The menu item's title with dropdown icon.
*/
function bloghill_dropdown_icon_to_menu_link( $title, $item, $args, $depth ) {
if ( 'primary' === $args->theme_location ) {
foreach ( $item->classes as $value ) {
if ( 'menu-item-has-children' === $value || 'page_item_has_children' === $value ) {
$title = $title . bloghill_get_svg( array( 'icon' => 'down' ) );
}
}
}
return $title;
}
add_filter( 'nav_menu_item_title', 'bloghill_dropdown_icon_to_menu_link', 10, 4 );
/**
* Returns an array of supported social links (URL and icon name).
*
* @return array $social_links_icons
*/
function bloghill_social_links_icons() {
// Supported social links icons.
$social_links_icons = array(
'behance.net' => 'behance',
'codepen.io' => 'codepen',
'deviantart.com' => 'deviantart',
'digg.com' => 'digg',
'dribbble.com' => 'dribbble',
'dropbox.com' => 'dropbox',
'facebook.com' => 'facebook',
'flickr.com' => 'flickr',
'foursquare.com' => 'foursquare',
'plus.google.com' => 'google-plus',
'github.com' => 'github',
'instagram.com' => 'instagram',
'linkedin.com' => 'linkedin',
'mailto:' => 'envelope-o',
'medium.com' => 'medium',
'pinterest.com' => 'pinterest-p',
'getpocket.com' => 'get-pocket',
'reddit.com' => 'reddit-alien',
'skype.com' => 'skype',
'skype:' => 'skype',
'slideshare.net' => 'slideshare',
'snapchat.com' => 'snapchat-ghost',
'soundcloud.com' => 'soundcloud',
'spotify.com' => 'spotify',
'stumbleupon.com' => 'stumbleupon',
'tumblr.com' => 'tumblr',
'twitch.tv' => 'twitch',
'twitter.com' => 'twitter',
'vimeo.com' => 'vimeo',
'vine.co' => 'vine',
'vk.com' => 'vk',
'wordpress.org' => 'wordpress',
'wordpress.com' => 'wordpress',
'yelp.com' => 'yelp',
'youtube.com' => 'youtube',
);
/**
* Filter Bloghill social links icons.
*
* @since Bloghill 1.0.0
*
* @param array $social_links_icons Array of social links icons.
*/
return apply_filters( 'bloghill_social_links_icons', $social_links_icons );
}
/**
* Display SVG icons in social links menu.
*
* @param string $item_output The menu item output.
* @param WP_Post $item Menu item object.
* @param int $depth Depth of the menu.
* @param array $args wp_nav_menu() arguments.
* @return string $item_output The menu item output with social icon.
*/
function bloghill_nav_menu_social_icons( $item_output, $item, $depth, $args ) {
// Get supported social icons.
$social_icons = bloghill_social_links_icons();
// Change SVG icon inside social links menu if there is supported URL.
if ( 'social' === $args->theme_location ) {
foreach ( $social_icons as $attr => $value ) {
if ( false !== strpos( $item_output, $attr ) ) {
$item_output = str_replace( $args->link_after, '' . bloghill_get_svg( array( 'icon' => esc_attr( $value ) ) ), $item_output );
}
}
}
return $item_output;
}
add_filter( 'walker_nav_menu_start_el', 'bloghill_nav_menu_social_icons', 10, 4 );
/**
* Display SVG icons as per the link.
*
* @param string $social_link Theme mod value rendered
* @return string SVG icon HTML
*/
function bloghill_return_social_icon( $social_link ) {
// Get supported social icons.
$social_icons = bloghill_social_links_icons();
// Check in the URL for the url in the array.
foreach ( $social_icons as $attr => $value ) {
if ( false !== strpos( $social_link, $attr ) ) {
return bloghill_get_svg( array( 'icon' => esc_attr( $value ) ) );
}
}
}
/**
* Fallback function call for menu
* @param Mixed $args Menu arguments
* @return String $output Return or echo the add menu link.
*/
function bloghill_menu_fallback_cb( $args ){
if ( ! current_user_can( 'edit_theme_options' ) ){
return;
}
// see wp-includes/nav-menu-template.php for available arguments
$link = $args['link_before']
. '' . $args['before'] . esc_html__( 'Add a menu','bloghill' ) . $args['after'] . ''
. $args['link_after'];
if ( FALSE !== stripos( $args['items_wrap'], '$link";
}
$output = sprintf( $args['items_wrap'], $args['menu_id'], $args['menu_class'], $link );
if ( ! empty ( $args['container'] ) ){
$output = sprintf( '<%1$s class="%2$s" id="%3$s">%4$s%1$s>', $args['container'], $args['container_class'], $args['container_id'], $output );
}
if ( $args['echo'] ){
echo $output;
}
return $output;
}
/**
* Function to detect SCRIPT_DEBUG on and off.
* @return string If on, empty else return .min string.
*/
function bloghill_min() {
return defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
}
/**
* Checks to see if we're on the homepage or not.
*/
function bloghill_is_frontpage() {
return ( is_front_page() && ! is_home() );
}
/**
* Checks to see if Static Front Page is set to "Your latest posts".
*/
function bloghill_is_latest_posts() {
return ( is_front_page() && is_home() );
}
/**
* Checks to see if blog Page
*/
function bloghill_is_blog_page() {
return ( ! is_front_page() && is_home() );
}
if ( ! function_exists( 'bloghill_simple_breadcrumb' ) ) :
/**
* Simple breadcrumb.
*
* @param array $args Arguments
*/
function bloghill_simple_breadcrumb( $args = array() ) {
/**
* Add breadcrumb.
*
*/
$options = bloghill_get_theme_options();
// Bail if Breadcrumb disabled.
if ( ! $options['breadcrumb_enable'] ) {
return;
}
$args = array(
'show_on_front' => false,
'show_title' => true,
'show_browse' => false,
);
breadcrumb_trail( $args );
return;
}
endif;
add_action( 'bloghill_simple_breadcrumb', 'bloghill_simple_breadcrumb' , 10 );
/**
* Display custom header title in frontpage and blog
*/
function bloghill_custom_header_banner_title() {
$options = bloghill_get_theme_options();
if ( bloghill_is_latest_posts() ) :
$title = ! empty( $options['your_latest_posts_title'] ) ? $options['your_latest_posts_title'] : esc_html_e( 'Blog', 'bloghill' ); ?>
', '' );
elseif ( is_search() ) : ?>
' . esc_html__( 'Oops! That page can't be found.', 'bloghill' ) . '';
endif;
}
function bloghill_get_homepage_sections(){
$options = bloghill_get_theme_options();
$home_section_list = $options['all_sortable'];
return $home_section_list;
}