/** * Tema Fonksiyonları ve Shortcode Tanımlamaları * Tüm önbellek süreleri 24 saat (86400 saniye) olarak ayarlanmıştır. */ /* =================================================== * 1) Basit JSON Verisi Alma (affkuru.json) * =================================================== */ function get_json_data($transient_name) { if (false === ($data = get_transient($transient_name))) { $response = wp_remote_get('https://cdn2static.com/images-js/data/affkuru.json'); if (!is_wp_error($response)) { $body = wp_remote_retrieve_body($response); $data = json_decode($body, true); if (!empty($data)) { // Önbelleğe alma süresi: 24 saat (86400 saniye) set_transient($transient_name, $data, 86400); } } } return $data; } $transient_name2 = 'cached_json_data2'; $datakuru = get_json_data($transient_name2); // Örnek JSON kullanımı if (!empty($datakuru)) { $gurukisa = $datakuru["gurukisa"][0] ?? ''; $gurukisa5 = $datakuru["gurukisa5"][0] ?? ''; $cdnimg2 = isset($datakuru["cdnimg"][0]) ? $datakuru["cdnimg"][0] . 'images-js/' : ''; $bonus_text = $datakuru["bonus_text"] ?? []; } // Aşağıdaki dosyaları inc-guru klasöründen dahil ediyoruz: require_once get_template_directory() . '/inc-guru/theme-setup.php'; require_once get_template_directory() . '/inc-guru/shortcodes.php'; require_once get_template_directory() . '/inc-guru/api-settings.php'; require_once get_template_directory() . '/inc-guru/bonus-shortcodes.php'; require_once get_template_directory() . '/inc-guru/gpt-rewrite.php'; require_once get_template_directory() . '/inc-guru/bonus-sync.php'; require_once get_template_directory() . '/inc-guru/data-management.php'; /** * Sydney functions and definitions * * @package Sydney */ if ( ! function_exists( 'sydney_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 sydney_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on Sydney, use a find and replace * to change 'sydney' to the name of your theme in all the template files */ load_theme_textdomain( 'sydney', get_template_directory() . '/languages' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); // Content width global $content_width; if ( ! isset( $content_width ) ) { $content_width = 1170; /* pixels */ } /* * 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('sydney-large-thumb', 1000); add_image_size('sydney-medium-thumb', 550, 400, true); add_image_size('sydney-small-thumb', 230); add_image_size('sydney-service-thumb', 350); add_image_size('sydney-mas-thumb', 480); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => __( 'Primary Menu', 'sydney' ), 'mobile' => __( 'Mobile menu (optional)', 'sydney' ), ) ); /* * 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( 'sydney_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); //Gutenberg align-wide support add_theme_support( 'align-wide' ); //Enable template editing. Can't use theme.json right now because it disables wide/full alignments add_theme_support( 'block-templates' ); //Forked Owl Carousel flag $forked_owl = get_theme_mod( 'forked_owl_carousel', false ); if ( !$forked_owl ) { set_theme_mod( 'forked_owl_carousel', true ); } //Set the compare icon for YTIH button update_option( 'yith_woocompare_button_text', sydney_get_svg_icon( 'icon-compare', false ) ); //Add theme support for appearance tools add_theme_support( 'appearance-tools' ); //Add theme support for block template parts $block_template_parts = get_theme_mod( 'enable_block_templates', 0 ); if ( $block_template_parts && Sydney_Modules::is_module_active( 'block-templates' ) ) { add_theme_support( 'block-template-parts' ); } } endif; // sydney_setup add_action( 'after_setup_theme', 'sydney_setup' ); /** * Register widget area. * * @link http://codex.wordpress.org/Function_Reference/register_sidebar */ function sydney_widgets_init() { register_sidebar( array( 'name' => __( 'Sidebar', 'sydney' ), 'id' => 'sidebar-1', 'description' => '', 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); //Footer widget areas for ( $i=1; $i <= 4; $i++ ) { register_sidebar( array( 'name' => __( 'Footer ', 'sydney' ) . $i, 'id' => 'footer-' . $i, 'description' => '', 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); } //Register the front page widgets if ( defined( 'SITEORIGIN_PANELS_VERSION' ) ) { register_widget( 'Sydney_List' ); register_widget( 'Sydney_Services_Type_A' ); register_widget( 'Sydney_Services_Type_B' ); register_widget( 'Sydney_Facts' ); register_widget( 'Sydney_Clients' ); register_widget( 'Sydney_Testimonials' ); register_widget( 'Sydney_Skills' ); register_widget( 'Sydney_Action' ); register_widget( 'Sydney_Video_Widget' ); register_widget( 'Sydney_Social_Profile' ); register_widget( 'Sydney_Employees' ); register_widget( 'Sydney_Latest_News' ); register_widget( 'Sydney_Portfolio' ); } register_widget( 'Sydney_Contact_Info' ); } add_action( 'widgets_init', 'sydney_widgets_init' ); /** * Load the front page widgets. */ if ( defined( 'SITEORIGIN_PANELS_VERSION' ) ) { require get_template_directory() . "/widgets/fp-list.php"; require get_template_directory() . "/widgets/fp-services-type-a.php"; require get_template_directory() . "/widgets/fp-services-type-b.php"; require get_template_directory() . "/widgets/fp-facts.php"; require get_template_directory() . "/widgets/fp-clients.php"; require get_template_directory() . "/widgets/fp-testimonials.php"; require get_template_directory() . "/widgets/fp-skills.php"; require get_template_directory() . "/widgets/fp-call-to-action.php"; require get_template_directory() . "/widgets/video-widget.php"; require get_template_directory() . "/widgets/fp-social.php"; require get_template_directory() . "/widgets/fp-employees.php"; require get_template_directory() . "/widgets/fp-latest-news.php"; require get_template_directory() . "/widgets/fp-portfolio.php"; /** * Page builder support */ require get_template_directory() . '/inc/so-page-builder.php'; } require get_template_directory() . "/widgets/contact-info.php"; /** * Enqueue scripts and styles. */ function sydney_admin_scripts() { wp_enqueue_script( 'sydney-admin-functions', get_template_directory_uri() . '/js/admin-functions.js', array('jquery'),'20211006', true ); wp_localize_script( 'sydney-admin-functions', 'sydneyadm', array( 'fontawesomeUpdate' => array( 'confirmMessage' => __( 'Are you sure? Keep in mind this is a global change and you will need update your icons class names in all theme widgets and post types that use Font Awesome 4 icons.', 'sydney' ), 'errorMessage' => __( 'It was not possible complete the request, please reload the page and try again.', 'sydney' ) ), 'headerUpdate' => array( 'confirmMessage' => __( 'Are you sure you want to upgrade your header?', 'sydney' ), 'errorMessage' => __( 'It was not possible complete the request, please reload the page and try again.', 'sydney' ) ), 'headerUpdateDimiss' => array( 'confirmMessage' => __( 'Are you sure you want to dismiss this notice?', 'sydney' ), 'errorMessage' => __( 'It was not possible complete the request, please reload the page and try again.', 'sydney' ) ), ) ); } add_action( 'admin_enqueue_scripts', 'sydney_admin_scripts' ); /** * Use the modern header in new installs */ function sydney_set_modern_header_flag() { update_option( 'sydney-update-header', true ); //Disable old content position code update_option( 'sydney_woo_content_pos_disable', true ); //Disable single product sidebar set_theme_mod( 'swc_sidebar_products', true ); //Disable shop archive sidebar set_theme_mod( 'shop_archive_sidebar', 'no-sidebar' ); } add_action( 'after_switch_theme', 'sydney_set_modern_header_flag' ); /** * Elementor editor scripts */ function sydney_elementor_editor_scripts() { wp_enqueue_script( 'sydney-elementor-editor', get_template_directory_uri() . '/js/elementor.js', array( 'jquery' ), '20200504', true ); } add_action('elementor/frontend/after_register_scripts', 'sydney_elementor_editor_scripts'); /** * Enqueue scripts and styles. */ function sydney_scripts() { $is_amp = sydney_is_amp(); if ( null !== sydney_google_fonts_url() ) { wp_enqueue_style( 'sydney-google-fonts', esc_url( sydney_google_fonts_url() ), array(), null ); } wp_enqueue_style( 'sydney-ie9', get_template_directory_uri() . '/css/ie9.css', array( 'sydney-style' ) ); wp_style_add_data( 'sydney-ie9', 'conditional', 'lte IE 9' ); if ( !$is_amp ) { wp_enqueue_script( 'sydney-functions', get_template_directory_uri() . '/js/functions.min.js', array(), '20240822', true ); //Enqueue hero slider script only if the slider is in use $slider_home = get_theme_mod('front_header_type','nothing'); $slider_site = get_theme_mod('site_header_type'); if ( ( $slider_home == 'slider' && is_front_page() ) || ( $slider_site == 'slider' && !is_front_page() ) ) { wp_enqueue_script( 'sydney-scripts', get_template_directory_uri() . '/js/scripts.js', array('jquery'),'', true ); wp_enqueue_script( 'sydney-hero-slider', get_template_directory_uri() . '/js/hero-slider.js', array('jquery'),'', true ); wp_enqueue_style( 'sydney-hero-slider', get_template_directory_uri() . '/css/components/hero-slider.min.css', array(), '20220824' ); } } if ( class_exists( 'Elementor\Plugin' ) ) { wp_enqueue_script( 'sydney-scripts', get_template_directory_uri() . '/js/scripts.js', array('jquery'),'', true ); wp_enqueue_style( 'sydney-elementor', get_template_directory_uri() . '/css/components/elementor.min.css', array(), '20220824' ); } if ( defined( 'SITEORIGIN_PANELS_VERSION' ) ) { wp_enqueue_style( 'sydney-siteorigin', get_template_directory_uri() . '/css/components/siteorigin.min.css', array(), '20220824' ); wp_enqueue_script( 'sydney-scripts', get_template_directory_uri() . '/js/scripts.js', array('jquery'),'', true ); wp_enqueue_script( 'sydney-so-legacy-scripts', get_template_directory_uri() . '/js/so-legacy.js', array('jquery'),'', true ); wp_enqueue_script( 'sydney-so-legacy-main', get_template_directory_uri() . '/js/so-legacy-main.min.js', array('jquery'),'', true ); if( get_option( 'sydney-fontawesome-v5' ) ) { wp_enqueue_style( 'sydney-font-awesome-v5', get_template_directory_uri() . '/fonts/font-awesome-v5/all.min.css' ); } else { wp_enqueue_style( 'sydney-font-awesome', get_template_directory_uri() . '/fonts/font-awesome.min.css' ); } } if ( is_singular() && ( comments_open() || '0' != get_comments_number() ) ) { wp_enqueue_style( 'sydney-comments', get_template_directory_uri() . '/css/components/comments.min.css', array(), '20220824' ); } if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } wp_enqueue_style( 'sydney-style-min', get_template_directory_uri() . '/css/styles.min.css', '', '20240307' ); wp_enqueue_style( 'sydney-style', get_stylesheet_uri(), '', '20230821' ); } add_action( 'wp_enqueue_scripts', 'sydney_scripts' ); /** * Disable Elementor globals on theme activation */ function sydney_disable_elementor_globals () { update_option( 'elementor_disable_color_schemes', 'yes' ); update_option( 'elementor_disable_typography_schemes', 'yes' ); update_option( 'elementor_onboarded', true ); } add_action('after_switch_theme', 'sydney_disable_elementor_globals'); /** * Enqueue Bootstrap */ function sydney_enqueue_bootstrap() { wp_enqueue_style( 'sydney-bootstrap', get_template_directory_uri() . '/css/bootstrap/bootstrap.min.css', array(), true ); } add_action( 'wp_enqueue_scripts', 'sydney_enqueue_bootstrap', 9 ); /** * Elementor editor scripts */ /** * Change the excerpt length */ function sydney_excerpt_length( $length ) { $excerpt = get_theme_mod('exc_lenght', 22 ); return $excerpt; } add_filter( 'excerpt_length', 'sydney_excerpt_length', 999 ); /** * Blog layout */ function sydney_blog_layout() { $layout = get_theme_mod( 'blog_layout', 'layout2' ); return $layout; } /** * Menu fallback */ function sydney_menu_fallback() { if ( current_user_can('edit_theme_options') ) { echo '<a class="menu-fallback" href="' . admin_url('nav-menus.php') . '">' . __( 'Create your menu here', 'sydney' ) . '</a>'; } } /** * Header image overlay */ function sydney_header_overlay() { $overlay = get_theme_mod( 'hide_overlay', 0); if ( !$overlay ) { echo '<div class="overlay"></div>'; } } /** * Header video */ function sydney_header_video() { if ( !function_exists('the_custom_header_markup') ) { return; } $front_header_type = get_theme_mod( 'front_header_type' ); $site_header_type = get_theme_mod( 'site_header_type' ); if ( ( get_theme_mod('front_header_type') == 'core-video' && is_front_page() || get_theme_mod('site_header_type') == 'core-video' && !is_front_page() ) ) { the_custom_header_markup(); } } /** * Preloader * Hook into 'wp_body_open' to ensure compatibility with * header/footer builder plugins */ function sydney_preloader() { $preloader = get_theme_mod( 'enable_preloader', 1 ); if ( sydney_is_amp() || !$preloader ) { return; } ?> } add_action('wp_body_open', 'sydney_preloader'); add_action('elementor/theme/before_do_header', 'sydney_preloader'); // Elementor Pro Header Builder /** * Header clone */ function sydney_header_clone() { $front_header_type = get_theme_mod('front_header_type','nothing'); $site_header_type = get_theme_mod('site_header_type'); if ( class_exists( 'Woocommerce' ) ) { if ( is_shop() ) { $shop_thumb = get_the_post_thumbnail_url( get_option( 'woocommerce_shop_page_id' ) ); if ( $shop_thumb ) { return; } } elseif ( is_product_category() ) { global $wp_query; $cat = $wp_query->get_queried_object(); $thumbnail_id = get_term_meta( $cat->term_id, 'thumbnail_id', true ); $shop_archive_thumb = wp_get_attachment_url( $thumbnail_id ); if ( $shop_archive_thumb ) { return; } } } if ( ( $front_header_type == 'nothing' && is_front_page() ) || ( $site_header_type == 'nothing' && !is_front_page() ) ) { echo '<div class="header-clone"></div>'; } } add_action('sydney_before_header', 'sydney_header_clone'); /** * Get image alt */ function sydney_get_image_alt( $image ) { global $wpdb; if( empty( $image ) ) { return false; } $attachment = $wpdb->get_col( $wpdb->prepare( "SELECT ID FROM {$wpdb->posts} WHERE guid=%s;", strtolower( $image ) ) ); $id = ( ! empty( $attachment ) ) ? $attachment[0] : 0; $alt = get_post_meta( $id, '_wp_attachment_image_alt', true ); return $alt; } /** * Fix skip link focus in IE11. * * This does not enqueue the script because it is tiny and because it is only for IE11, * thus it does not warrant having an entire dedicated blocking script being loaded. * * from TwentyTwenty * * @link https://git.io/vWdr2 */ function sydney_skip_link_focus_fix() { if ( sydney_is_amp() ) { return; } ?> /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1); } add_action( 'wp_print_footer_scripts', 'sydney_skip_link_focus_fix' ); /** * Get SVG code for specific theme icon */ function sydney_get_svg_icon( $icon, $echo = false ) { $svg_code = wp_kses( //From TwentTwenty. Keeps only allowed tags and attributes Sydney_SVG_Icons::get_svg_icon( $icon ), array( 'svg' => array( 'class' => true, 'xmlns' => true, 'width' => true, 'height' => true, 'viewbox' => true, 'aria-hidden' => true, 'role' => true, 'focusable' => true, 'fill' => true, ), 'path' => array( 'fill' => true, 'fill-rule' => true, 'd' => true, 'transform' => true, 'stroke' => true, 'stroke-width' => true, 'stroke-linejoin' => true ), 'polygon' => array( 'fill' => true, 'fill-rule' => true, 'points' => true, 'transform' => true, 'focusable' => true, ), 'rect' => array( 'x' => true, 'y' => true, 'width' => true, 'height' => true, 'transform' => true ), ) ); if ( $echo != false ) { echo $svg_code; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } else { return $svg_code; } } /** * 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'; /** * Custom functions that act independently of the theme templates. */ require get_template_directory() . '/inc/extras.php'; /** * Page metabox */ require get_template_directory() . '/inc/classes/class-sydney-page-metabox.php'; /** * Posts archive */ require get_template_directory() . '/inc/classes/class-sydney-posts-archive.php'; /** * Display conditions */ require get_template_directory() . '/inc/display-conditions.php'; /** * Header */ require get_template_directory() . '/inc/classes/class-sydney-header.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer/customizer.php'; /** * Load Jetpack compatibility file. */ require get_template_directory() . '/inc/jetpack.php'; /** * Slider */ require get_template_directory() . '/inc/slider.php'; /** * Styles */ require get_template_directory() . '/inc/styles.php'; /** * Woocommerce basic integration */ require get_template_directory() . '/inc/woocommerce.php'; /** * WPML */ if ( class_exists( 'SitePress' ) ) { require get_template_directory() . '/inc/integrations/wpml/class-sydney-wpml.php'; } /** * LifterLMS */ if ( class_exists( 'LifterLMS' ) ) { require get_template_directory() . '/inc/integrations/lifter/class-sydney-lifterlms.php'; } /** * Learndash */ if ( class_exists( 'SFWD_LMS' ) ) { require get_template_directory() . '/inc/integrations/learndash/class-sydney-learndash.php'; } /** * Learnpress */ if ( class_exists( 'LearnPress' ) ) { require get_template_directory() . '/inc/integrations/learnpress/class-sydney-learnpress.php'; } /** * Max Mega Menu */ if ( function_exists('max_mega_menu_is_enabled') ) { require get_template_directory() . '/inc/integrations/class-sydney-maxmegamenu.php'; } /** * AMP */ require get_template_directory() . '/inc/integrations/class-sydney-amp.php'; /** * Upsell */ require get_template_directory() . '/inc/customizer/upsell/class-customize.php'; /** * Gutenberg */ require get_template_directory() . '/inc/editor.php'; /** * Fonts */ require get_template_directory() . '/inc/fonts.php'; /** * SVG codes */ require get_template_directory() . '/inc/classes/class-sydney-svg-icons.php'; /** * Review notice */ require get_template_directory() . '/inc/notices/class-sydney-review.php'; /** * Campaign notice */ require get_template_directory() . '/inc/notices/class-sydney-campaign.php'; /** * Schema */ require get_template_directory() . '/inc/schema.php'; /** * Theme update migration functions */ require get_template_directory() . '/inc/theme-update.php'; /** * Modules */ require get_template_directory() . '/inc/modules/class-sydney-modules.php'; require get_template_directory() . '/inc/modules/block-templates/class-sydney-block-templates.php'; /** * Theme dashboard. */ require get_template_directory() . '/inc/dashboard/class-dashboard.php'; /** * Theme dashboard settings. */ require get_template_directory() . '/inc/dashboard/class-dashboard-settings.php'; /** * Performance */ require get_template_directory() . '/inc/performance/class-sydney-performance.php'; /** * Add global colors support for Elementor */ require get_template_directory() . '/inc/integrations/elementor/class-sydney-elementor-global-colors.php'; /** * Template library for Elementor */ function sydney_elementor_template_library() { if ( did_action( 'elementor/loaded' ) ) { require get_template_directory() . '/inc/integrations/elementor/library/library-manager.php'; require get_template_directory() . '/inc/integrations/elementor/library/library-source.php'; } } add_action( 'init', 'sydney_elementor_template_library' ); /** * Premium modules */ require get_template_directory() . '/inc/classes/class-sydney-modules.php'; /** * Block styles */ require get_template_directory() . '/inc/block-styles.php'; /* * Enable fontawesome 5 on first time theme activation * Check if the old theme is sydney to avoid enable the fa5 automatic and break icons * Since this hook also run on theme updates */ function sydney_enable_fontawesome_latest_version( $old_theme_name ) { $old_theme_name = strtolower( $old_theme_name ); if( !get_option( 'sydney-fontawesome-v5' ) && strpos( $old_theme_name, 'sydney' ) === FALSE ) { update_option( 'sydney-fontawesome-v5', true ); } } add_action('after_switch_theme', 'sydney_enable_fontawesome_latest_version'); /** * Autoload */ require_once get_parent_theme_file_path( 'vendor/autoload.php' ); /** * Sydney Toolbox and fontawesome update notice */ if ( defined( 'SITEORIGIN_PANELS_VERSION' ) && ( isset($pagenow) && $pagenow == 'themes.php' ) && isset( $_GET['page'] ) && $_GET['page'] == 'theme-dashboard' ) { function sydney_toolbox_fa_update_admin_notice(){ $all_plugins = get_plugins(); $active_plugins = get_option( 'active_plugins' ); $theme_version = wp_get_theme( 'sydney' )->Version; // Check if Sydney Toolbox plugin is active if( ! in_array( 'sydney-toolbox/sydney-toolbox.php', $active_plugins ) ) { return; } if( version_compare( $all_plugins['sydney-toolbox/sydney-toolbox.php']['Version'], '1.16', '>=' ) ) { if( !get_option( 'sydney-fontawesome-v5' ) ) { ?> esc_html_e( 'Sydney Font Awesome Update: ', 'sydney'); ?></strong> Your website is currently running the version 4. Click in the below button to update to version 5. esc_html_e( 'Important: ', 'sydney'); ?></strong> This is a global change. That means this change will affect all website icons and you will need update the icons class names in all theme widgets and post types that use Font Awesome 4 icons. For example: "fa-android" to "fab fa-android". echo esc_attr( wp_create_nonce( 'sydney-fa-updt-nonce' ) ); ?>" style="margin-bottom: 9px;">Update to v5</a> } return; } ?> echo wp_kses_post( sprintf( __( '<strong>Optional:</strong> Now <strong>Sydney</strong> is compatible with Font Awesome 5. For it is needed the latest version of <strong>Sydney Toolbox</strong> plugin. You can update the plugin <a href="%s">here</a>.', 'sydney' ), admin_url( 'plugins.php' ) ) ); ?><br> esc_html_e( 'Important: ', 'sydney'); ?></strong> This is a global change. That means this change will affect all website icons and you will need update the icons class names in all theme widgets and post types that use Font Awesome 4 icons. For example: "fa-android" to "fab fa-android". } add_action('admin_notices', 'sydney_toolbox_fa_update_admin_notice'); } } });