/** * newspaperly functions and definitions * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * @package newspaperly */ if ( ! function_exists( 'newspaperly_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 newspaperly_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on newspaperly, use a find and replace * to change 'newspaperly' to the name of your theme in all the template files. */ load_theme_textdomain( 'newspaperly', 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' ); /* * 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' => '', 'content' => '<a href="%"><img src="'.get_template_directory_uri().'/inc/starter_content/img/1.png"/></a>' ) )); $header_widgets_two = array('custom' => array( 'custom_html', array( 'title' => '', 'content' => '<a href="%"><img src="'.get_template_directory_uri().'/inc/starter_content/img/2.png"/></a>' ) )); $header_widgets_three = array('custom' => array( 'custom_html', array( 'title' => '', 'content' => '<a href="%"><img src="'.get_template_directory_uri().'/inc/starter_content/img/3.png"/></a>' ) )); $footer_widgets = array('custom' => array( 'custom_html', array( 'title' => 'LOREM IPSUM', 'content' => '<p>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.</p>' ) )); $top_widgets = array('custom' => array( 'custom_html', array( 'title' => '', 'content' => '<a href="%"><img src="'.get_template_directory_uri().'/inc/starter_content/img/top-banner.png"/></a>' ) )); $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_two, 'headerwidget-3' => $header_widgets_three, 'footerwidget-1' => $footer_widgets, 'footerwidget-2' => $footer_widgets, 'footerwidget-3' => $footer_widgets, 'banner-widget' => $top_widgets, 'sidebar-1' => array( 'custom_portrait' => array( 'recent-posts', array( 'title' => '' ) ), 'custom_banner' => array( 'custom_html', array( 'content' => '<img src="'.get_template_directory_uri().'/inc/starter_content/img/banner.png"/>' ) ), ), ) ); add_theme_support('starter-content', $starter_content); // Starter Content End /* * 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( 'newspaperly-grid', 350 , 230, true ); add_image_size( 'newspaperly-slider', 850 ); add_image_size( 'newspaperly-small', 300 , 180, true ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'menu-1' => esc_html__( 'Primary', 'newspaperly' ), ) ); /* * 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( 'newspaperly_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', 'newspaperly_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 newspaperly_content_width() { $GLOBALS['content_width'] = apply_filters( 'newspaperly_content_width', 640 ); } add_action( 'after_setup_theme', 'newspaperly_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function newspaperly_widgets_init() { /** * Widgets shown in the header, beside the logo. */ register_sidebar( array( 'name' => esc_html__( 'Header Widget', 'newspaperly' ), 'id' => 'banner-widget', 'description' => esc_html__( 'Add widgets to the header banner here.', 'newspaperly' ), 'before_widget' => '<section id="%1$s" class="banner-widget widget swidgets-wrap %2$s">', 'after_widget' => '</section>', 'before_title' => '<div class="swidget"><h3 class="widget-title">', 'after_title' => '</h3></div>', ) ); /** * Widgets shown in the sidebar. */ register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'newspaperly' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here.', 'newspaperly' ), 'before_widget' => '<section id="%1$s" class="fbox swidgets-wrap widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<div class="swidget"><div class="sidebar-title-border"><h3 class="widget-title">', 'after_title' => '</h3></div></div>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Widget (1)', 'newspaperly' ), 'id' => 'footerwidget-1', 'description' => esc_html__( 'Add widgets here.', 'newspaperly' ), 'before_widget' => '<section id="%1$s" class="fbox widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<div class="swidget"><h3 class="widget-title">', 'after_title' => '</h3></div>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Widget (2)', 'newspaperly' ), 'id' => 'footerwidget-2', 'description' => esc_html__( 'Add widgets here.', 'newspaperly' ), 'before_widget' => '<section id="%1$s" class="fbox widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<div class="swidget"><h3 class="widget-title">', 'after_title' => '</h3></div>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Widget (3)', 'newspaperly' ), 'id' => 'footerwidget-3', 'description' => esc_html__( 'Add widgets here.', 'newspaperly' ), 'before_widget' => '<section id="%1$s" class="fbox widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<div class="swidget"><h3 class="widget-title">', 'after_title' => '</h3></div>', ) ); /** * Widgets shown under the navigation. */ register_sidebar( array( 'name' => esc_html__( 'Top Widget (1)', 'newspaperly' ), 'id' => 'headerwidget-1', 'description' => esc_html__( 'Add widgets here.', 'newspaperly' ), 'before_widget' => '<section id="%1$s" class="header-widget widget swidgets-wrap %2$s">', 'after_widget' => '</section>', 'before_title' => '<div class="swidget"><div class="sidebar-title-border"><h3 class="widget-title">', 'after_title' => '</h3></div></div>', ) ); register_sidebar( array( 'name' => esc_html__( 'Top Widget (2)', 'newspaperly' ), 'id' => 'headerwidget-2', 'description' => esc_html__( 'Add widgets here.', 'newspaperly' ), 'before_widget' => '<section id="%1$s" class="header-widget widget swidgets-wrap %2$s">', 'after_widget' => '</section>', 'before_title' => '<div class="swidget"><div class="sidebar-title-border"><h3 class="widget-title">', 'after_title' => '</h3></div></div>', ) ); register_sidebar( array( 'name' => esc_html__( 'Top Widget (3)', 'newspaperly' ), 'id' => 'headerwidget-3', 'description' => esc_html__( 'Add widgets here.', 'newspaperly' ), 'before_widget' => '<section id="%1$s" class="header-widget widget swidgets-wrap %2$s">', 'after_widget' => '</section>', 'before_title' => '<div class="swidget"><div class="sidebar-title-border"><h3 class="widget-title">', 'after_title' => '</h3></div></div>', ) ); } add_action( 'widgets_init', 'newspaperly_widgets_init' ); /** * Enqueue scripts and styles. */ function newspaperly_scripts() { wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/css/font-awesome.min.css' ); wp_enqueue_style( 'newspaperly-style', get_stylesheet_uri() ); wp_enqueue_script( 'newspaperly-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20170823', true ); wp_enqueue_script( 'newspaperly-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20170823', true ); wp_enqueue_script( 'newspaperly-flexslider-jquery', get_template_directory_uri() . '/js/jquery.flexslider.js', array('jquery'), '20150423', true ); wp_enqueue_script( 'newspaperly-script', get_template_directory_uri() . '/js/script.js', array(), '20160720', true ); wp_enqueue_script( 'newspaperly-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', 'newspaperly_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'; } /** * Enqueue Google fonts, credits can be found in readme. */ function newspaperly_google_fonts() { wp_enqueue_style( 'newspaperly-google-fonts', '//fonts.googleapis.com/css?family=Lato:300,400,700,900|Merriweather:400,700', false ); } add_action( 'wp_enqueue_scripts', 'newspaperly_google_fonts' ); /** * excerpt Changes */ function newspaperly_new_excerpt_more( $more ) { if ( ! is_admin() ) /* If you want to change replace the dots after excerpt with something else, do it on the line below */ return '...'; } add_filter('excerpt_more', 'newspaperly_new_excerpt_more'); function newspaperly_custom_excerpt_length( $length ) { if ( ! is_admin() ) /* If you want to change the excerpt length, change this number */ return 32; } add_filter( 'excerpt_length', 'newspaperly_custom_excerpt_length', 1 ); /** * Blog Pagination */ if ( !function_exists( 'newspaperly_numeric_posts_nav' ) ) { function newspaperly_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(the_posts_pagination(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', ) )); } } } /** * * Copyright and License for Upsell button by Justin Tadlock - 2016 © Justin Tadlock. customizer button https://github.com/justintadlock/trt-customizer-pro */ require_once( trailingslashit( get_template_directory() ) . 'justinadlock-customizer-button/class-customize.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 Newspaperly 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() . '/inc/tgm/class-tgm-plugin-activation.php'; add_action( 'tgmpa_register', 'newspaperly_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 newspaperly_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( // This is an example of how to include a plugin from the WordPress Plugin Repository. array( 'name' => 'Superb Addons', 'slug' => 'superb-blocks', 'required' => false, ), ); /* * Array of configuration settings. Amend each line as needed. * * TGMPA will start providing localized text strings soon. If you already have translations of our standard * strings available, please help us make TGMPA even better by giving us access to these translations or by * sending in a pull-request with .po file(s) with the translations. * * Only uncomment the strings in the config array if you want to customize the strings. */ $config = array( 'id' => 'newspaperly', // 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' => true, // Automatically activate plugins after installation or not. 'message' => '', // Message to output right before the plugins table. ); tgmpa( $plugins, $config ); } // Initialize information content require_once trailingslashit(get_template_directory()) . 'inc/vendor/autoload.php'; use SuperbThemesThemeInformationContent\ThemeEntryPoint; ThemeEntryPoint::init([ 'type' => 'classic', // block / classic 'theme_url' => 'https://superbthemes.com/newspaperly/', 'demo_url' => 'https://superbthemes.com/demo/newspaperly/', 'features' => array( array('title'=>'Customize All Fonts'), array('title'=>'Customize All Colors'), array('title'=>'Only Show Upper Widgets On Front Page'), array('title'=>'Only Show Widgets On Front Page'), array('title'=>'Custom Copyright Text'), array('title'=>'Remove "Tag" from tag page title'), array('title'=>'Remove "Author" from author page title'), array('title'=>'Remove "Category" from author page title') ) ]); <!doctype html> <html lang="en-US" prefix="og: http://ogp.me/ns#"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="http://gmpg.org/xfn/11"> <meta name='robots' content='max-image-preview:large' /> <!-- This site is optimized with the Yoast WordPress SEO plugin v1.5.4.2 - https://yoast.com/wordpress/plugins/seo/ --> <link rel="canonical" href="https://globalnoteslab.com" /> <link rel="next" href="https://globalnoteslab.com/page/2/" /> <meta property="og:locale" content="en_US" /> <meta property="og:type" content="website" /> <meta property="og:title" content="globalnoteslab -" /> <meta property="og:url" content="https://globalnoteslab.com" /> <meta property="og:site_name" content="globalnoteslab" /> <!-- / Yoast WordPress SEO plugin. --> <style id='wp-img-auto-sizes-contain-inline-css' type='text/css'> img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} /*# sourceURL=wp-img-auto-sizes-contain-inline-css */ </style> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } /*# sourceURL=wp-emoji-styles-inline-css */ </style> <style id='wp-block-library-inline-css' type='text/css'> :root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}} /*# sourceURL=wp-block-library-inline-css */ </style> <style id='classic-theme-styles-inline-css' type='text/css'> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} /*# sourceURL=/wp-includes/css/classic-themes.min.css */ </style> <script type="text/javascript" src="https://globalnoteslab.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://globalnoteslab.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script> <script type="text/javascript" src="https://globalnoteslab.com/wp-content/plugins/wp-fast-start/modules/js/front.js?ver=1.0" id="wcf_front.js-js"></script> <link rel="https://api.w.org/" href="https://globalnoteslab.com/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://globalnoteslab.com/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.9.4" /> <style type="text/css" id="wp-custom-css"> .site-info{ display:none } </style> </head> <body class="home blog wp-theme-newspaperly"> <a class="skip-link screen-reader-text" href="#content">Skip to content</a> <div id="page" class="site"> <header id="masthead" class="sheader site-header clearfix"> <div class="content-wrap"> <!-- Header background color and image is added to class below --> <div class="header-bg"> <div class="site-branding"> <!-- If you are viewing the blog page, make the title a H1 --> <h1 class="site-title"><a href="https://globalnoteslab.com/" rel="home">globalnoteslab</a></h1> </div> </div> </div> <!-- Navigation below these lines, move it up if you want it above the header --> <nav id="primary-site-navigation" class="primary-menu main-navigation clearfix"> <a href="#" id="pull" class="smenu-hide toggle-mobile-menu menu-toggle" aria-controls="secondary-menu" aria-expanded="false">Menu</a> <div class="content-wrap text-center"> <div class="center-main-menu"> <div class="menu-main-menu-container"><ul id="primary-menu" class="pmenu"><li id="menu-item-11" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-11"><a href="https://globalnoteslab.com/">Home</a></li> <li id="menu-item-12" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12"><a href="https://globalnoteslab.com/about/">About</a></li> <li id="menu-item-13" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-13"><a href="https://globalnoteslab.com/contact/">Contact</a></li> <li id="menu-item-14" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-14"><a href="https://globalnoteslab.com/privacy-policy-2/">Privacy Policy</a></li> </ul></div> </div> </div> </nav> <div class="content-wrap"> <div class="super-menu clearfix"> <div class="super-menu-inner"> <a href="#" id="pull" class="toggle-mobile-menu menu-toggle" aria-controls="secondary-menu" aria-expanded="false">Menu</a> </div> </div> </div> <div id="mobile-menu-overlay"></div> <!-- Navigation above these lines, move it up if you want it above the header --> </header> <div class="content-wrap"> <!-- Upper widgets --> <div class="header-widgets-wrapper"> </div> </div> <div id="content" class="site-content clearfix"> <div class="content-wrap"> <div class="content-wrap-bg"> <div id="primary" class="featured-content content-area"> <main id="main" class="site-main"> <article id="post-6617" class="posts-entry fbox blogposts-list post-6617 post type-post status-publish format-standard hentry"> <div class="blogposts-list-content"> <header class="entry-header"> <h2 class="entry-title"><a href="https://globalnoteslab.com/kaboombet-casino-100-free-spins-bonus-2026/" rel="bookmark">Kaboombet Casino 100 Free Spins Bonus 2026</a></h2> <div class="entry-meta"> <div class="blog-data-wrapper"> <div class="post-data-divider"></div> <div class="post-data-positioning"> <div class="post-data-text">