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 https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
*/
add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( 300 );
add_image_size( 'flatmagazinews-grid', 350 , 230, true );
add_image_size( 'flatmagazinews-slider', 850 );
add_image_size( 'flatmagazinews-small', 300 , 180, true );
// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
'menu-1' => esc_html__( 'Primary', 'flatmagazinews' ),
) );
/*
* Add support for starter content
*/
// Starter Content Begin
$nav_items = array(
'home' => array(
'title' => 'Home',
'url' => '#',
),
'custom_blog' => array(
'title' => 'Blog',
'url' => '#',
),
'custom_news' => array(
'title' => 'News',
'url' => '#',
),
'custom_categories' => array(
'title' => 'Categories',
'url' => '#',
),
'custom_about' => array(
'title' => 'About',
'url' => '#',
),
'custom_contact' => array(
'title' => 'Contact',
'url' => '#',
),
);
$header_widgets = array('custom' => array(
'custom_html',
array(
'title' => 'Lorem Ipsum',
'content' => '
Accusantium et doloremque veritatis architecto, eaque ipsa quae ab illo inventore veritatis perspiciatis. Sed ut iste natus voluptatem fringilla tempor dignissim at.
'
)
));
$footer_widgets = array('custom' => array(
'custom_html',
array(
'title' => 'LOREM IPSUM',
'content' => 'Sed ut perspiciatis unde omnis iste natus voluptatem fringilla tempor dignissim at, pretium et arcu. Sed ut perspiciatis unde omnis iste tempor dignissim at, pretium et arcu natus voluptatem fringilla.
'
)
));
$starter_content = array(
'attachments' => array(
'featured-image-nothing-breaks-new-york' => array(
'post_title' => 'Featured Image 1',
'post_content' => 'Attachment Description',
'post_excerpt' => 'Attachment Caption',
'file' => 'inc/starter_content/img/nothing-breaks-new-york.png',
),
'featured-image-getting-what-you-want' => array(
'post_title' => 'Featured Image 2',
'post_content' => 'Attachment Description',
'post_excerpt' => 'Attachment Caption',
'file' => 'inc/starter_content/img/getting-what-you-want.png',
),
'featured-image-are-you-sabotaging-your-creativity' => array(
'post_title' => 'Featured Image 3',
'post_content' => 'Attachment Description',
'post_excerpt' => 'Attachment Caption',
'file' => 'inc/starter_content/img/are-you-sabotaging-your-creativity.png',
),
'featured-image-what-ive-learned-from-road-trips' => array(
'post_title' => 'Featured Image 4',
'post_content' => 'Attachment Description',
'post_excerpt' => 'Attachment Caption',
'file' => 'inc/starter_content/img/what-ive-learned-from-road-trips.png',
),
'featured-image-how-to-write-10000-words-a-week' => array(
'post_title' => 'Featured Image 5',
'post_content' => 'Attachment Description',
'post_excerpt' => 'Attachment Caption',
'file' => 'inc/starter_content/img/how-to-write-10000-words-a-week.png',
),
),
'posts' => array(
'custom_post_1' => require dirname(__FILE__) . "/inc/starter_content/posts/nothing_beats_new_york.php",
'custom_post_2' => require dirname(__FILE__) . "/inc/starter_content/posts/getting_what_you_want.php",
'custom_post_3' => require dirname(__FILE__). "/inc/starter_content/posts/are_you_sabotaging_your_creativity.php",
'custom_post_4' => require dirname(__FILE__). "/inc/starter_content/posts/how-to-write-10000-words-a-week.php",
'custom_post_5' => require dirname(__FILE__). "/inc/starter_content/posts/what_ive_learned_from_road_trips.php",
),
'nav_menus' => array(
'menu-1' => array(
'name' => 'Primary',
'items' => $nav_items,
),
),
'widgets' => array(
'headerwidget-1' => $header_widgets,
'headerwidget-2' => $header_widgets,
'headerwidget-3' => $header_widgets,
'footerwidget-1' => $footer_widgets,
'footerwidget-2' => $footer_widgets,
'footerwidget-3' => $footer_widgets,
'sidebar-1' => array(
'custom_portrait' => array(
'custom_html',
array(
'content' => '
Aliquam et elit eu nunc rhoncus viverra quis at felis et netus et malesuada fames ac turpis egestas. Aenean commodo ligula eget dolor.
'
)
),
'custom_banner' => array(
'custom_html',
array(
'content' => '
.'/inc/starter_content/img/banner.png)
'
)
),
),
)
);
add_theme_support('starter-content', $starter_content);
// Starter Content End
/*
* 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',
) );
// Set up the WordPress core custom background feature.
add_theme_support( 'custom-background', apply_filters( 'flatmagazinews_custom_background_args', array(
'default-color' => '#f1f1f1',
'default-image' => '',
'default-image' => '',
) ) );
// Add theme support for selective refresh for widgets.
add_theme_support( 'customize-selective-refresh-widgets' );
/**
* Add support for core custom logo.
*
* @link https://codex.wordpress.org/Theme_Logo
*/
add_theme_support( 'custom-logo', array(
'flex-width' => true,
'flex-height' => true,
) );
}
endif;
add_action( 'after_setup_theme', 'flatmagazinews_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 flatmagazinews_content_width() {
$GLOBALS['content_width'] = apply_filters( 'flatmagazinews_content_width', 640 );
}
add_action( 'after_setup_theme', 'flatmagazinews_content_width', 0 );
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function flatmagazinews_widgets_init() {
register_sidebar( array(
'name' => esc_html__( 'Sidebar', 'flatmagazinews' ),
'id' => 'sidebar-1',
'description' => esc_html__( 'Add widgets here.', 'flatmagazinews' ),
'before_widget' => '
',
'before_title' => '
',
) );
register_sidebar( array(
'name' => esc_html__( 'Footer Widget (1)', 'flatmagazinews' ),
'id' => 'footerwidget-1',
'description' => esc_html__( 'Add widgets here.', 'flatmagazinews' ),
'before_widget' => '
',
'before_title' => '
',
) );
register_sidebar( array(
'name' => esc_html__( 'Footer Widget (2)', 'flatmagazinews' ),
'id' => 'footerwidget-2',
'description' => esc_html__( 'Add widgets here.', 'flatmagazinews' ),
'before_widget' => '
',
'before_title' => '
',
) );
register_sidebar( array(
'name' => esc_html__( 'Footer Widget (3)', 'flatmagazinews' ),
'id' => 'footerwidget-3',
'description' => esc_html__( 'Add widgets here.', 'flatmagazinews' ),
'before_widget' => '
',
'before_title' => '
',
) );
register_sidebar( array(
'name' => esc_html__( 'Header Widget (1)', 'flatmagazinews' ),
'id' => 'headerwidget-1',
'description' => esc_html__( 'Add widgets here.', 'flatmagazinews' ),
'before_widget' => '',
'before_title' => '
',
) );
register_sidebar( array(
'name' => esc_html__( 'Header Widget (2)', 'flatmagazinews' ),
'id' => 'headerwidget-2',
'description' => esc_html__( 'Add widgets here.', 'flatmagazinews' ),
'before_widget' => '',
'before_title' => '
',
) );
register_sidebar( array(
'name' => esc_html__( 'Header Widget (3)', 'flatmagazinews' ),
'id' => 'headerwidget-3',
'description' => esc_html__( 'Add widgets here.', 'flatmagazinews' ),
'before_widget' => '',
'before_title' => '
',
) );
}
add_action( 'widgets_init', 'flatmagazinews_widgets_init' );
/**
* Enqueue scripts and styles.
*/
function flatmagazinews_scripts() {
wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/css/font-awesome.min.css' );
wp_enqueue_style( 'flatmagazinews-style', get_stylesheet_uri() );
wp_enqueue_script( 'flatmagazinews-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20170823', true );
wp_enqueue_script( 'flatmagazinews-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array('jquery'), '20170823', true );
wp_enqueue_script( 'flatmagazinews-script', get_template_directory_uri() . '/js/script.js', array(), '20160720', true );
wp_enqueue_script( 'flatmagazinews-accessibility', get_template_directory_uri() . '/js/accessibility.js', array(), '20160720', true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'flatmagazinews_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';
/**
* Functions which enhance the theme by hooking into WordPress.
*/
require get_template_directory() . '/inc/template-functions.php';
/**
* Customizer additions.
*/
require get_template_directory() . '/inc/customizer.php';
/**
* Load Jetpack compatibility file.
*/
if ( defined( 'JETPACK__VERSION' ) ) {
require get_template_directory() . '/inc/jetpack.php';
}
/**
* Google fonts, credits can be found in readme.
*/
function flatmagazinews_google_fonts() {
wp_enqueue_style( 'flatmagazinews-google-fonts', '//fonts.googleapis.com/css?family=Lato:300,400,700,900|Merriweather:400,700', false );
}
add_action( 'wp_enqueue_scripts', 'flatmagazinews_google_fonts' );
/**
* Dots after excerpt
*/
function new_excerpt_more( $more ) {
return '...';
}
add_filter('excerpt_more', 'new_excerpt_more');
/**
* Blog Pagination
*/
if ( !function_exists( 'flatmagazinews_numeric_posts_nav' ) ) {
function flatmagazinews_numeric_posts_nav() {
$prev_arrow = is_rtl() ? 'Previous' : 'Next';
$next_arrow = is_rtl() ? 'Next' : 'Previous';
global $wp_query;
$total = $wp_query->max_num_pages;
$big = 999999999; // need an unlikely integer
if( $total > 1 ) {
if( !$current_page = get_query_var('paged') )
$current_page = 1;
if( get_option('permalink_structure') ) {
$format = 'page/%#%/';
} else {
$format = '&paged=%#%';
}
echo wp_kses_post(paginate_links(array(
'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
'format' => $format,
'current' => max( 1, get_query_var('paged') ),
'total' => $total,
'mid_size' => 3,
'type' => 'list',
'prev_text' => 'Previous',
'next_text' => 'Next',
) ));
}
}
}
/**
* Deactivate Elementor Wizard
*/
function flatmagazinews_remove_elementor_onboarding()
{
update_option('elementor_onboarded', true);
}
add_action('after_switch_theme', 'flatmagazinews_remove_elementor_onboarding');
require_once(trailingslashit(get_template_directory()) . 'inc/info_content/loader.php');
/**
* This file represents an example of the code that themes would use to register
* the required plugins.
*
* It is expected that theme authors would copy and paste this code into their
* functions.php file, and amend to suit.
*
* @see http://tgmpluginactivation.com/configuration/ for detailed documentation.
*
* @package TGM-Plugin-Activation
* @subpackage Example
* @version 2.6.1 for parent theme Flatmagazinews for publication on WordPress.org
* @author Thomas Griffin, Gary Jones, Juliette Reinders Folmer
* @copyright Copyright (c) 2011, Thomas Griffin
* @license http://opensource.org/licenses/gpl-2.0.php GPL v2 or later
* @link https://github.com/TGMPA/TGM-Plugin-Activation
*/
/**
* Include the TGM_Plugin_Activation class.
*
* Depending on your implementation, you may want to change the include call:
*
* Parent Theme:
* require_once get_template_directory() . '/path/to/class-tgm-plugin-activation.php';
*
* Child Theme:
* require_once get_stylesheet_directory() . '/path/to/class-tgm-plugin-activation.php';
*
* Plugin:
* require_once dirname( __FILE__ ) . '/path/to/class-tgm-plugin-activation.php';
*/
require_once get_template_directory() . '/tgm/class-tgm-plugin-activation.php';
add_action( 'tgmpa_register', 'flatmagazinews_register_required_plugins' );
/**
* Register the required plugins for this theme.
*
* In this example, we register five plugins:
* - one included with the TGMPA library
* - two from an external source, one from an arbitrary source, one from a GitHub repository
* - two from the .org repo, where one demonstrates the use of the `is_callable` argument
*
* The variables passed to the `tgmpa()` function should be:
* - an array of plugin arrays;
* - optionally a configuration array.
* If you are not changing anything in the configuration array, you can remove the array and remove the
* variable from the function call: `tgmpa( $plugins );`.
* In that case, the TGMPA default settings will be used.
*
* This function is hooked into `tgmpa_register`, which is fired on the WP `init` action on priority 10.
*/
function flatmagazinews_register_required_plugins() {
/*
* Array of plugin arrays. Required keys are name and slug.
* If the source is NOT from the .org repo, then source is also required.
*/
$plugins = array(
array(
'name' => 'Superb Helper',
'slug' => 'superb-helper',
'required' => false,
),
);
$config = array(
'id' => 'flatmagazinews', // Unique ID for hashing notices for multiple instances of TGMPA.
'default_path' => '', // Default absolute path to bundled plugins.
'menu' => 'tgmpa-install-plugins', // Menu slug.
'has_notices' => true, // Show admin notices or not.
'dismissable' => true, // If false, a user cannot dismiss the nag message.
'dismiss_msg' => '', // If 'dismissable' is false, this message will be output at top of nag.
'is_automatic' => false, // Automatically activate plugins after installation or not.
'message' => '', // Message to output right before the plugins table.
);
tgmpa( $plugins, $config );
}
add_action('admin_init', 'flatmagazinews_spbThemesNotification', 8);
function flatmagazinews_spbThemesNotification(){
$notifications = include('inc/admin_notification/Autoload.php');
$notifications->Add("flatmagazinews_notification", "Unlock All Features with Flat Magazinews Premium – Limited Time Offer", "
Take advantage of the up to
40% discount and unlock all features with Flat Magazinews Premium.
The discount is only available for a limited time.
", "info");
$options_notification_start = array("delay"=> "-1 seconds", "wpautop" => false);
$notifications->Add("flatmagazinews_notification_start", "Let's get you started with Flat Magazinews!", '
Why Flat Magazinews
- Easy to Use & Customize
- Search Engine Optimized
- Lightweight and Fast
- Top-notch Customer Support
View Flat Magazinews Demo
Customize Flat Magazinews
', "info", $options_notification_start);
$notifications->Boot();
}