/**
* SoSimple functions and definitions
*
* @package SoSimple
*/
if ( ! function_exists( 'sosimple_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 sosimple_setup() {
/*
* Make theme available for translation.
* Translations can be filed in the /languages/ directory.
* If you're building a theme based on SoSimple, use a find and replace
* to change 'sosimple' to the name of your theme in all the template files
*/
load_theme_textdomain( 'sosimple', 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
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' );
add_image_size( 'sosimple-featured', '656', '300', true );
add_image_size( 'sosimple-site-logo', '300', '300' );
// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
'primary' => esc_html__( 'Primary Menu', 'sosimple' ),
) );
add_editor_style( array( 'editor-style.css', sosimple_fonts_url(), get_template_directory_uri() . '/genericons/genericons.css' ) );
/*
* Switch default core markup for search form, comment form, and comments
* to output valid HTML5.
*/
add_theme_support( 'html5', array(
'search-form',
'comment-form',
'comment-list',
'gallery',
'caption',
) );
/*
* Enable support for Post Formats.
* See http://codex.wordpress.org/Post_Formats
*/
add_theme_support( 'post-formats', array(
'aside',
'image',
'video',
'quote',
'link',
) );
// Set up the WordPress core custom background feature.
add_theme_support( 'custom-background', apply_filters( 'sosimple_custom_background_args', array(
'default-color' => 'ffffff',
'default-image' => '',
) ) );
}
endif; // sosimple_setup
add_action( 'after_setup_theme', 'sosimple_setup' );
/**
* Set 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 sosimple_content_width() {
$GLOBALS['content_width'] = apply_filters( 'sosimple_content_width', 640 );
}
add_action( 'after_setup_theme', 'sosimple_content_width', 0 );
/**
* Register widget area.
*
* @link http://codex.wordpress.org/Function_Reference/register_sidebar
*/
function sosimple_widgets_init() {
register_sidebar( array(
'name' => esc_html__( 'Sidebar', 'sosimple' ),
'id' => 'sidebar-1',
'description' => '',
'before_widget' => '',
'before_title' => '
',
'after_title' => '
',
) );
}
add_action( 'widgets_init', 'sosimple_widgets_init' );
/**
* Enqueue scripts and styles.
*/
function sosimple_scripts() {
wp_enqueue_style( 'sosimple-style', get_stylesheet_uri() );
wp_enqueue_style( 'sosimple-fonts', sosimple_fonts_url(), array(), null );
wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.0.3' );
wp_enqueue_script( 'sosimple-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20120206', true );
wp_enqueue_script( 'sosimple-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array( 'jquery' ), '1.0', true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'sosimple_scripts' );
/**
* Register Google Fonts
*/
function sosimple_fonts_url() {
$fonts_url = '';
/* Translators: If there are characters in your language that are not
* supported by Roboto Slab, translate this to 'off'. Do not translate
* into your own language.
*/
$font_families = array();
$heading_font_family = get_theme_mod( 'sosimple_google_fonts_heading_font', null );
$body_font_family = get_theme_mod( 'sosimple_google_fonts_body_font', null );
if ( !empty( $heading_font_family ) && $heading_font_family !== 'none' ) {
$heading_font = _x( 'on', $heading_font_family . ' font: on or off', 'sosimple' );
if ( 'off' !== $heading_font ) {
$font_families[] = $heading_font_family;
}
}
if ( !empty( $body_font_family ) && $body_font_family !== 'none' && $body_font_family !== $heading_font_family ) {
$body_font = _x( 'on', $body_font_family . ' font: on or off', 'sosimple' );
if ( 'off' !== $body_font ) {
$font_families[] = $body_font_family;
}
}
if ( count( $font_families ) === 4 ) {
array_slice( $font_families, 2 );
}
if ( !empty( $font_families ) ) {
$query_args = array(
'family' => urlencode( implode( '|', $font_families ) ),
'subset' => urlencode( 'latin,latin-ext' ),
);
$fonts_url = add_query_arg( $query_args, '//fonts.googleapis.com/css' );
}
return $fonts_url;
}
function sosimple_load_theme_fonts()
{
$heading = get_theme_mod( 'sosimple_google_fonts_heading_font' );
$body = get_theme_mod( 'sosimple_google_fonts_body_font' );
if ( ( !empty( $heading ) && $heading != 'none' ) || ( !empty( $body ) && $body != 'none' ) ) {
echo '';
}
}
add_action( 'wp_head', 'sosimple_load_theme_fonts' );
function sosimple_admin_notice__success() {
$class = 'notice notice-info is-dismissible';
$message = __( 'Good Day, this is the SoSimple theme creator fervillz. I am thankful that you are still using my theme, in return I would like to offer you a chance to be a part of the next SoSimple update. What to do? Just contact me on my email fervillz@gmail.com an write what features you wantto add on the next update. That\'s all!!', 'sosimple' );
printf( '