&lt;?php 
require &#039;inc/index.php&#039;;
require &#039;widget/index.php&#039;;
if ( is_admin() ) {
    require_once get_template_directory() . &#039;/inc/tgmpa/class-tgm-plugin-activation.php&#039;;

    add_action( &#039;tgmpa_register&#039;, &#039;delikwp_register_required_plugins&#039; );
    /**
     * 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 delikwp_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(
            // Include One Click Demo Import from the WordPress Plugin Repository.
            array(
                &#039;name&#039;      =&gt; &#039;Classic Editor&#039;,
                &#039;slug&#039;      =&gt; &#039;classic-editor&#039;,
                &#039;required&#039;  =&gt; true,
            ),
			array(
				&#039;name&#039;      =&gt; &#039;Classic Widgets&#039;,
				&#039;slug&#039;      =&gt; &#039;classic-widgets&#039;,
				&#039;required&#039;  =&gt; false,
			),
			array(
				&#039;name&#039;      =&gt; &#039;Ad Inserter&#039;,
				&#039;slug&#039;      =&gt; &#039;ad-inserter&#039;,
				&#039;required&#039;  =&gt; false,
			),
			array(
				&#039;name&#039;      =&gt; &#039;Regenerate Thumbnails&#039;,
				&#039;slug&#039;      =&gt; &#039;regenerate-thumbnails&#039;,
				&#039;required&#039;  =&gt; false,
			),
			array(
				&#039;name&#039;      =&gt; &#039;AMP&#039;,
				&#039;slug&#039;      =&gt; &#039;amp&#039;,
				&#039;required&#039;  =&gt; false,
			),
			array(
				&#039;name&#039;      =&gt; &#039;Yoast SEO&#039;,
				&#039;slug&#039;      =&gt; &#039;wordpress-seo&#039;,
				&#039;required&#039;  =&gt; false,
			),
			array(
				&#039;name&#039;      =&gt; &#039;YouTube Embed Plus&#039;,
				&#039;slug&#039;      =&gt; &#039;youtube-embed-plus&#039;,
				&#039;required&#039;  =&gt; false,
			),
            array(
                &#039;name&#039;     =&gt; &#039;One Click Demo Import&#039;,
                &#039;slug&#039;     =&gt; &#039;one-click-demo-import&#039;,
                &#039;required&#039; =&gt; true,
            ),
        );

        /*
         * 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(
            &#039;id&#039;           =&gt; &#039;delikwp&#039;,              // Unique ID for hashing notices for multiple instances of TGMPA.
            &#039;default_path&#039; =&gt; &#039;&#039;,                      // Default absolute path to bundled plugins.
            &#039;menu&#039;         =&gt; &#039;tgmpa-install-plugins&#039;, // Menu slug.
            &#039;parent_slug&#039;  =&gt; &#039;themes.php&#039;,            // Parent menu slug.
            &#039;capability&#039;   =&gt; &#039;edit_theme_options&#039;,    // Capability needed to view plugin install page, should be a capability associated with the parent menu used.
            &#039;has_notices&#039;  =&gt; true,                    // Show admin notices or not.
            &#039;dismissable&#039;  =&gt; true,                    // If false, a user cannot dismiss the nag message.
            &#039;dismiss_msg&#039;  =&gt; &#039;&#039;,                      // If &#039;dismissable&#039; is false, this message will be output at top of nag.
            &#039;is_automatic&#039; =&gt; true,                   // Automatically activate plugins after installation or not.
            &#039;message&#039;      =&gt; &#039;&#039;,                      // Message to output right before the plugins table.
        );

        tgmpa( $plugins, $config );
    }

    if ( class_exists( &#039;OCDI_Plugin&#039; ) ) {
        /**
         * Load One Click Demo Import
         *
         * @since v.1.0.0
         */
        require get_template_directory() . &#039;/inc/importer.php&#039;;
    }
}
if ( is_admin() ) {
  /**
   * Load Theme Update Checker.
   *
   * @since v.1.0.1
   */
	require get_template_directory() . &#039;/inc/class-theme-update-checker.php&#039;;
}
?&gt;
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//radarluwu.com/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://radarluwu.com/post-sitemap.xml</loc>
		<lastmod>2026-05-25T10:53:55+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://radarluwu.com/page-sitemap.xml</loc>
		<lastmod>2025-07-25T01:32:08+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://radarluwu.com/category-sitemap.xml</loc>
		<lastmod>2026-05-25T10:53:55+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://radarluwu.com/post_tag-sitemap.xml</loc>
		<lastmod>2026-05-25T10:53:55+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://radarluwu.com/newstopic-sitemap.xml</loc>
		<lastmod>2025-12-19T08:09:36+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://radarluwu.com/author-sitemap.xml</loc>
		<lastmod>2026-05-31T13:34:30+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO -->