File: /home/locglobe/public_html/wp-content/themes/writers/functions.php_bak
<?php
/**
* writers functions and definitions
* Please browse readme.txt for credits and forking information
*
* @package writers
*/
if ( ! function_exists( 'writers_setup' ) ) :
/**
* Sets up theme defaults and registers support for various WordPress features.
*
* Note that this function is hooked into the after_setup_theme hook, which
* runs before the init hook. The init hook is too late for some features, such
* as indicating support for post thumbnails.
*/
function writers_setup() {
/*
* Make theme available for translation.
* Translations can be filed in the /languages/ directory.
* If you're building a theme based on writers, use a find and replace
* to change 'writers' to the name of your theme in all the template files
*/
load_theme_textdomain( 'writers', get_template_directory() . '/languages' );
// Add default posts and comments RSS feed links to head.
add_theme_support( 'automatic-feed-links' );
/*
* Let WordPress manage the document title.
* By adding theme support, we declare that this theme does not use a
* hard-coded <title> tag in the document head, and expect WordPress to
* provide it for us.
*/
add_theme_support( 'title-tag' );
/*
* Enable support for Post Thumbnails on posts and pages.
*
* @link http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails
*/
add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( 604, 270);
add_image_size( 'writers-full-width', 1038, 576, true );
// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
'primary' => esc_html__( 'Top Primary Menu', 'writers' ),
) );
/*
* Switch default core markup for search form, comment form, and comments
* to output valid HTML5.
*/
add_theme_support( 'html5', array(
'comment-form',
'comment-list',
'gallery',
'caption',
) );
}
endif; // writers_setup
add_action( 'after_setup_theme', 'writers_setup' );
/**
* Sets the content width in pixels, based on the theme's design and stylesheet.
*
* Priority 0 to make it available to lower priority callbacks.
*
* @global int $content_width
*
*/
function writers_content_width() {
$GLOBALS['content_width'] = apply_filters( 'writers_content_width', 640 );
}
add_action( 'after_setup_theme', 'writers_content_width', 0 );
/**
* Register widget area.
*
* @link http://codex.wordpress.org/Function_Reference/register_sidebar
*/
function writers_widgets_init() {
register_sidebar( array(
'name' => esc_html__( 'Sidebar', 'writers' ),
'id' => 'sidebar-1',
'description' => esc_html__( 'Widgets here will appear in your sidebar', 'writers' ),
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => '</aside>',
'before_title' => '<div class="sidebar-headline-wrapper"><div class="widget-title-lines"></div><h4 class="widget-title">',
'after_title' => '</h4></div>',
) );
}
add_action( 'widgets_init', 'writers_widgets_init' );
/**
* Enqueue scripts and styles.
*/
function writers_scripts ( $in_footer ) {
wp_enqueue_style( 'bootstrap', get_template_directory_uri().'/css/bootstrap.css',true );
wp_enqueue_style( 'writers-style', get_stylesheet_uri() );
wp_enqueue_style( 'font-awesome', get_template_directory_uri().'/font-awesome/css/font-awesome.min.css',true );
wp_enqueue_script( 'bootstrap', get_template_directory_uri() . '/js/bootstrap.js',array('jquery'),'',true);
wp_enqueue_script( 'writers-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array('jquery'), '20130115', true );
wp_enqueue_script( 'html5shiv', get_template_directory_uri().'/js/html5shiv.js', array(),'3.7.3',false );
wp_script_add_data( 'html5shiv', 'conditional', 'lt IE 9' );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'writers_scripts' );
/**
* Implement the Custom Header feature.
*/
require get_template_directory() . '/inc/custom-header.php';
/**
* Custom template tags for this theme.
*/
require get_template_directory() . '/inc/template-tags.php';
/**
* Custom functions that act independently of the theme templates.
*/
require get_template_directory() . '/inc/extras.php';
/**
* Customizer additions.
*/
require get_template_directory() . '/inc/customizer.php';
/**
* Load Jetpack compatibility file.
*/
require get_template_directory() . '/inc/jetpack.php';
/**
* Load custom nav walker
*/
if(!class_exists('wp_bootstrap_navwalker')){
require get_template_directory() . '/inc/navwalker.php';
}
function writers_google_fonts() {
$query_args = array(
'family' => 'Lato:400,400italic,600,600italic,700,700i,900'
);
wp_enqueue_style( 'writers-googlefonts', add_query_arg( $query_args, "//fonts.googleapis.com/css" ), array(), null );
}
add_action('wp_enqueue_scripts', 'writers_google_fonts');
function writers_new_excerpt_more( $more ) {
if ( is_admin() ) {
return $more;
}
$link = sprintf( '<p class="read-more"><a class="readmore-btn" href="'. esc_url(get_permalink( get_the_ID() )) . '' . '">' . __('+', 'writers') . '<span class="screen-reader-text"> '. __(' Read More', 'writers').'</span></a></p>',
esc_url( get_permalink( get_the_ID() ) )
);
return ' … ' . $link;
}
add_filter( 'excerpt_more', 'writers_new_excerpt_more' );
/**
*
* Custom Logo in the top menu
*
**/
function writers_logo() {
add_theme_support('custom-logo', array(
'size' => 'writers-logo',
'width' => 250,
'height' => 50,
'flex-height' => true,
));
}
add_action('after_setup_theme', 'writers_logo');
/**
*
* New Footer Widgets
*
**/
function writers_footer_widget_left_init() {
register_sidebar( array(
'name' => esc_html__('Footer Widget left', 'writers'),
'id' => 'footer_widget_left',
'description' => esc_html__( 'Widgets here will appear in your footer', 'writers' ),
'before_widget' => '<div class="footer-widgets">',
'after_widget' => '</div>',
'before_title' => '<h3>',
'after_title' => '</h3>',
) );
}
add_action( 'widgets_init', 'writers_footer_widget_left_init' );
function writers_footer_widget_middle_init() {
register_sidebar( array(
'name' => esc_html__('Footer Widget middle', 'writers'),
'id' => 'footer_widget_middle',
'description' => esc_html__( 'Widgets here will appear in your footer', 'writers' ),
'before_widget' => '<div class="footer-widgets">',
'after_widget' => '</div>',
'before_title' => '<h3>',
'after_title' => '</h3>',
) );
}
add_action( 'widgets_init', 'writers_footer_widget_middle_init' );
function writers_footer_widget_right_init() {
register_sidebar( array(
'name' => esc_html__('Footer Widget right', 'writers'),
'id' => 'footer_widget_right',
'before_widget' => '<div class="footer-widgets">',
'description' => esc_html__( 'Widgets here will appear in your footer', 'writers' ),
'after_widget' => '</div>',
'before_title' => '<h3>',
'after_title' => '</h3>',
) );
}
add_action( 'widgets_init', 'writers_footer_widget_right_init' );
function writers_bottom_widget_left_init() {
register_sidebar( array(
'name' => esc_html__('Bottom Widget left', 'writers'),
'id' => 'bottom_widget_left',
'before_widget' => '<div class="bottom-widgets">',
'after_widget' => '</div>',
'before_title' => '<h3>',
'description' => esc_html__( 'Widgets here will appear above the footer', 'writers' ),
'after_title' => '</h3>',
) );
}
add_action( 'widgets_init', 'writers_bottom_widget_left_init' );
function writers_bottom_widget_middle_init() {
register_sidebar( array(
'name' => esc_html__('Bottom Widget middle', 'writers'),
'id' => 'bottom_widget_middle',
'before_widget' => '<div class="bottom-widgets">',
'after_widget' => '</div>',
'before_title' => '<h3>',
'description' => esc_html__( 'Widgets here will appear above the footer', 'writers' ),
'after_title' => '</h3>',
) );
}
add_action( 'widgets_init', 'writers_bottom_widget_middle_init' );
function writers_bottom_widget_right_init() {
register_sidebar( array(
'name' => esc_html__('Bottom Widget right', 'writers'),
'id' => 'bottom_widget_right',
'before_widget' => '<div class="bottom-widgets">',
'after_widget' => '</div>',
'description' => esc_html__( 'Widgets here will appear above the footer', 'writers' ),
'before_title' => '<h3>',
'after_title' => '</h3>',
) );
}
add_action( 'widgets_init', 'writers_bottom_widget_right_init' );
add_action( 'customize_controls_print_styles', 'writers_customizer_stylesheet' );
function writers_load_custom_wp_admin_style( $hook ) {
if ( 'appearance_page_about-writers' !== $hook ) {
return;
}
wp_enqueue_style( 'writers-custom-admin-css', get_template_directory_uri() . '/css/admin.css', false, '1.0.0' );
}
add_action( 'admin_enqueue_scripts', 'writers_load_custom_wp_admin_style' );
/*Add noindex to low value pages*/
function add_noindex_tags(){
# Get page number for paginated archives.
$paged = intval( get_query_var( 'paged' ) );
# Add noindex nofollow tag to all archive, search and 404 pages.
if( is_archive() || is_search() || is_404() )
echo '<meta name="robots" content="noindex,nofollow">';
# Add noindex follow tag to homepage paginated pages.
if(( is_home() || is_front_page() ) && $paged >= 2 )
echo '<meta name="robots" content="noindex,follow">';
}
add_action('wp_head','add_noindex_tags', 0 );
/*Remove Yoast Meta Robots - do not want double meta tags*/
function disable_wpseo_meta_robots($robotsstr) {
if( is_archive() || is_search() || is_404() ){
return $robotsstr = '';
} else {
return $robotsstr = $robotsstr;
}
}
add_filter('wpseo_robots','disable_wpseo_meta_robots');