tag based on what is being viewed. * * @param string $title Default title text for current view. * @param string $sep Optional separator. * @return string The filtered title. */ if ( version_compare( $GLOBALS['wp_version'], '4.1', '<' ) ) : function emphasize_wp_title( $title, $sep ) { if ( is_feed() ) { return $title; } global $page, $paged; // Add the blog name $title .= get_bloginfo( 'name', 'display' ); // Add the blog description for the home/front page. $site_description = get_bloginfo( 'description', 'display' ); if ( $site_description && ( is_home() || is_front_page() ) ) { $title .= " $sep $site_description"; } // Add a page number if necessary: if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) { $title .= " $sep " . sprintf( __( 'Page %s', 'emphasize' ), max( $paged, $page ) ); } return $title; } add_filter( 'wp_title', 'emphasize_wp_title', 10, 2 ); /** * Title shim for sites older than WordPress 4.1. * * @link https://make.wordpress.org/core/2014/10/29/title-tags-in-4-1/ * @todo Remove this function when WordPress 4.3 is released. */ function emphasize_render_title() { ?> <?php wp_title( '|', true, 'right' ); ?> elements. */ preg_match( '//', $content, $matches ); /* If no
elements were found, wrap the entire content in one. */ if ( empty( $matches ) ) $content = "
{$content}
"; } return $content; } /** * Move the More Link outside from the contents last summary paragraph tag. * */ function emphasize_new_more_link($link) { $link = '

'.$link.'

'; return $link; } add_filter('the_content_more_link', 'emphasize_new_more_link'); /** * Adding a customizable Read More link to excerpts outside of the paragraph. */ function emphasize_new_excerpt_more( $more ) { return '

'; } add_filter( 'excerpt_more', 'emphasize_new_excerpt_more' ); /* Prevent page scroll after clicking read more to load the full post. * */ function emphasize_remove_more_link_scroll( $link ) { $link = preg_replace( '|#more-[0-9]+|', '', $link ); return $link; } add_filter( 'the_content_more_link', 'emphasize_remove_more_link_scroll' ); /** * Comment layout * */ if (!function_exists('emphasize_comment')) { function emphasize_comment($comment, $args, $depth) { $GLOBALS['comment'] = $comment; ?>
  • $depth, 'max_depth' => $args['max_depth']) ) ); ?>
    comment_approved == '0') : ?>

    area. * These styles are determined by the theme customizer settings you make changes to. * You should not have to edit these but can be overridden with custom css. * If your styles do not change, then use !important; */ function emphasize_css() { ?>