Name ) ); ?>

Name ) ); ?>

Name ) ); ?>

array( 'href' => array(), 'title' => array(), 'style' => array(), 'target' => array() ), ); echo wp_kses( 'With Bard theme you can build a beautiful online shop with ease, just install the Woocommerce plugin and start building your shop today!', $allowed_html); ?>

Name ) ); ?>

<?php esc_attr_e( 'Royal Elementor Addons', 'bard' ); ?>

Free News / Blog / Magazine Theme

Due to the high demand of our trusted users we designed a FREE, Lightning-fast and Easy to use WordPress theme with built-in Header/Footer Builder.

You can try it out for free right now, just click the button below to get started.

Theme Documentation', 'bard' ), esc_url('https://wp-royal-themes.com/themes/bard/docs/?ref=bard-free-backend-about-predefined-styles#predefined') ); ?>






short_description; $plugin_img = ( ! isset($plugin_info->icons['1x']) ) ? $plugin_info->icons['default'] : $plugin_info->icons['1x']; ?>

name ); ?>

$slug, 'fields' => array( 'downloaded' => false, 'rating' => false, 'description' => false, 'short_description' => true, 'donate_link' => false, 'tags' => false, 'sections' => true, 'homepage' => true, 'added' => false, 'last_updated' => false, 'compatibility' => false, 'tested' => false, 'requires' => false, 'downloadlink' => false, 'icons' => true, ), ) ); if ( ! is_wp_error( $call_api ) ) { set_transient( 'bard_about_plugin_info_' . $slug, $call_api, 30 * MINUTE_IN_SECONDS ); } } } return $call_api; } // Install/Activate Demo Import Plugin function bard_plugin_auto_activation() { // Get the list of currently active plugins (Most likely an empty array) $active_plugins = (array) get_option( 'active_plugins', array() ); array_push( $active_plugins, 'bard-extra/bard-extra.php' ); // Set the new plugin list in WordPress update_option( 'active_plugins', $active_plugins ); } add_action( 'wp_ajax_bard_plugin_auto_activation', 'bard_plugin_auto_activation' ); // TODO: News Magazine X Theme Installation (remove later) function bard_install_news_magazine_x_theme() { $nonce = $_POST['nonce']; if ( !wp_verify_nonce( $nonce, 'bard_about_nonce') || !current_user_can( 'manage_options' ) ) { exit; // Get out of here, the nonce is rotten! } if (!current_user_can('switch_themes')) { wp_send_json_error('Permission denied'); } $theme = sanitize_text_field($_POST['theme']); switch_theme($theme); wp_send_json_success(); } add_action( 'wp_ajax_bard_install_news_magazine_x_theme', 'bard_install_news_magazine_x_theme' ); // enqueue ui CSS/JS function bard_enqueue_about_page_scripts($hook) { if ( 'appearance_page_about-bard' != $hook ) { return; } // Get the current version of the theme $theme_data = wp_get_theme(); $theme_version = $theme_data->get('Version'); // enqueue CSS wp_enqueue_style( 'bard-about-css', get_theme_file_uri( '/inc/about/css/about-page.css' ), array(), $theme_version ); // Demo Import wp_enqueue_script( 'plugin-install' ); wp_enqueue_script( 'updates' ); wp_enqueue_script( 'bard-about-js', get_theme_file_uri( '/inc/about/js/about-bard-page.js' ), array(), $theme_version ); wp_localize_script('bard-about-js', 'bard_about', array( 'nonce' => wp_create_nonce('bard_about_nonce') )); } add_action( 'admin_enqueue_scripts', 'bard_enqueue_about_page_scripts' );