/** * Theme functions and definitions * * @package HelloElementor */ use Elementor\WPNotificationsPackage\V110\Notifications as ThemeNotifications; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } define( 'HELLO_ELEMENTOR_VERSION', '3.3.0' ); if ( ! isset( $content_width ) ) { $content_width = 800; // Pixels. } if ( ! function_exists( 'hello_elementor_setup' ) ) { /** * Set up theme support. * * @return void */ function hello_elementor_setup() { if ( is_admin() ) { hello_maybe_update_theme_version_in_db(); } if ( apply_filters( 'hello_elementor_register_menus', true ) ) { register_nav_menus( [ 'menu-1' => esc_html__( 'Header', 'hello-elementor' ) ] ); register_nav_menus( [ 'menu-2' => esc_html__( 'Footer', 'hello-elementor' ) ] ); } if ( apply_filters( 'hello_elementor_post_type_support', true ) ) { add_post_type_support( 'page', 'excerpt' ); } if ( apply_filters( 'hello_elementor_add_theme_support', true ) ) { add_theme_support( 'post-thumbnails' ); add_theme_support( 'automatic-feed-links' ); add_theme_support( 'title-tag' ); add_theme_support( 'html5', [ 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', 'script', 'style', ] ); add_theme_support( 'custom-logo', [ 'height' => 100, 'width' => 350, 'flex-height' => true, 'flex-width' => true, ] ); add_theme_support( 'align-wide' ); add_theme_support( 'responsive-embeds' ); /* * Editor Styles */ add_theme_support( 'editor-styles' ); add_editor_style( 'editor-styles.css' ); /* * WooCommerce. */ if ( apply_filters( 'hello_elementor_add_woocommerce_support', true ) ) { // WooCommerce in general. add_theme_support( 'woocommerce' ); // Enabling WooCommerce product gallery features (are off by default since WC 3.0.0). // zoom. add_theme_support( 'wc-product-gallery-zoom' ); // lightbox. add_theme_support( 'wc-product-gallery-lightbox' ); // swipe. add_theme_support( 'wc-product-gallery-slider' ); } } } } add_action( 'after_setup_theme', 'hello_elementor_setup' ); function hello_maybe_update_theme_version_in_db() { $theme_version_option_name = 'hello_theme_version'; // The theme version saved in the database. $hello_theme_db_version = get_option( $theme_version_option_name ); // If the 'hello_theme_version' option does not exist in the DB, or the version needs to be updated, do the update. if ( ! $hello_theme_db_version || version_compare( $hello_theme_db_version, HELLO_ELEMENTOR_VERSION, '<' ) ) { update_option( $theme_version_option_name, HELLO_ELEMENTOR_VERSION ); } } if ( ! function_exists( 'hello_elementor_display_header_footer' ) ) { /** * Check whether to display header footer. * * @return bool */ function hello_elementor_display_header_footer() { $hello_elementor_header_footer = true; return apply_filters( 'hello_elementor_header_footer', $hello_elementor_header_footer ); } } if ( ! function_exists( 'hello_elementor_scripts_styles' ) ) { /** * Theme Scripts & Styles. * * @return void */ function hello_elementor_scripts_styles() { $min_suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; if ( apply_filters( 'hello_elementor_enqueue_style', true ) ) { wp_enqueue_style( 'hello-elementor', get_template_directory_uri() . '/style' . $min_suffix . '.css', [], HELLO_ELEMENTOR_VERSION ); } if ( apply_filters( 'hello_elementor_enqueue_theme_style', true ) ) { wp_enqueue_style( 'hello-elementor-theme-style', get_template_directory_uri() . '/theme' . $min_suffix . '.css', [], HELLO_ELEMENTOR_VERSION ); } if ( hello_elementor_display_header_footer() ) { wp_enqueue_style( 'hello-elementor-header-footer', get_template_directory_uri() . '/header-footer' . $min_suffix . '.css', [], HELLO_ELEMENTOR_VERSION ); } } } add_action( 'wp_enqueue_scripts', 'hello_elementor_scripts_styles' ); if ( ! function_exists( 'hello_elementor_register_elementor_locations' ) ) { /** * Register Elementor Locations. * * @param ElementorPro\Modules\ThemeBuilder\Classes\Locations_Manager $elementor_theme_manager theme manager. * * @return void */ function hello_elementor_register_elementor_locations( $elementor_theme_manager ) { if ( apply_filters( 'hello_elementor_register_elementor_locations', true ) ) { $elementor_theme_manager->register_all_core_location(); } } } add_action( 'elementor/theme/register_locations', 'hello_elementor_register_elementor_locations' ); if ( ! function_exists( 'hello_elementor_content_width' ) ) { /** * Set default content width. * * @return void */ function hello_elementor_content_width() { $GLOBALS['content_width'] = apply_filters( 'hello_elementor_content_width', 800 ); } } add_action( 'after_setup_theme', 'hello_elementor_content_width', 0 ); if ( ! function_exists( 'hello_elementor_add_description_meta_tag' ) ) { /** * Add description meta tag with excerpt text. * * @return void */ function hello_elementor_add_description_meta_tag() { if ( ! apply_filters( 'hello_elementor_description_meta_tag', true ) ) { return; } if ( ! is_singular() ) { return; } $post = get_queried_object(); if ( empty( $post->post_excerpt ) ) { return; } echo '' . "\n"; } } add_action( 'wp_head', 'hello_elementor_add_description_meta_tag' ); // Admin notice if ( is_admin() ) { require get_template_directory() . '/includes/admin-functions.php'; } // Settings page require get_template_directory() . '/includes/settings-functions.php'; // Header & footer styling option, inside Elementor require get_template_directory() . '/includes/elementor-functions.php'; if ( ! function_exists( 'hello_elementor_customizer' ) ) { // Customizer controls function hello_elementor_customizer() { if ( ! is_customize_preview() ) { return; } if ( ! hello_elementor_display_header_footer() ) { return; } require get_template_directory() . '/includes/customizer-functions.php'; } } add_action( 'init', 'hello_elementor_customizer' ); if ( ! function_exists( 'hello_elementor_check_hide_title' ) ) { /** * Check whether to display the page title. * * @param bool $val default value. * * @return bool */ function hello_elementor_check_hide_title( $val ) { if ( defined( 'ELEMENTOR_VERSION' ) ) { $current_doc = Elementor\Plugin::instance()->documents->get( get_the_ID() ); if ( $current_doc && 'yes' === $current_doc->get_settings( 'hide_title' ) ) { $val = false; } } return $val; } } add_filter( 'hello_elementor_page_title', 'hello_elementor_check_hide_title' ); /** * BC: * In v2.7.0 the theme removed the `hello_elementor_body_open()` from `header.php` replacing it with `wp_body_open()`. * The following code prevents fatal errors in child themes that still use this function. */ if ( ! function_exists( 'hello_elementor_body_open' ) ) { function hello_elementor_body_open() { wp_body_open(); } } function hello_elementor_get_theme_notifications(): ThemeNotifications { static $notifications = null; if ( null === $notifications ) { require get_template_directory() . '/vendor/autoload.php'; $notifications = new ThemeNotifications( 'hello-elementor', HELLO_ELEMENTOR_VERSION, 'theme' ); } return $notifications; } hello_elementor_get_theme_notifications(); Noile extensii de domenii gTLD – Sicmedia
Warning: Trying to access array offset on false in /home/sicu/public_html/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-featured-image.php on line 39

Warning: Trying to access array offset on false in /home/sicu/public_html/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-featured-image.php on line 39

Warning: Trying to access array offset on false in /home/sicu/public_html/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-featured-image.php on line 39

Warning: Trying to access array offset on false in /home/sicu/public_html/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-featured-image.php on line 39

Warning: Trying to access array offset on false in /home/sicu/public_html/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-featured-image.php on line 39

Noile extensii de domenii gTLD

Desi Internet Corporation for Assigned Names and Numbers (ICANN) vorbeste de ani de zile despre noiile extensii de domenii gTLD-uri, este clar ca exista o serie de proprietari de afaceri care inca mai au intrebari despre ceea ce sunt aceste extensii si cum ii vor afecta.

Ce sunt noile extensii de domenii gTLD?

Noile gTLD-uri sau domenii generice de nivel superior sunt extensii de domeniu „dot-everything” care depasesc .com, .net, .org si celelalte terminatii de domeniu cu care ne-am obisnuit.

ICANN a acceptat aplicatii de la organizatii mari care doresc sa ruleze noi extensii de domeniu, care includ companii precum IBM, Google, Amazon, Audi si YouTube.

Au fost depuse mii de cereri pentru noi extensii de domeniu pentru diferite tipuri de extensii, de la cele cu adevarat generice (.love, .shop, .app), pana la cele specifice marcii (.goog, .bmw, .aol) si geo-specifice (.nyc, .boston, .paris).

Multe dintre companiile care au aplicat pentru a rula noile extensii de domeniu au aflat ca nu sunt singurele. Acest lucru inseamna ca exista mai multi solicitanti pentru un gTLD specific (de ex .app, care are 13 solicitanti).

Aceste companii lucreaza frenetic pentru a incerca sa rezolve aceste aspecte si sa gaseasca un singur solicitant care va rula noul gTLD, dar daca firmele solicitante nu reusesc sa rezolve disputele intre ele, este posibil sa fie nevoie sa mearga la o licitatie ICANN, ceea ce majoritatea solicitantilor nu vor sa faca.

De asemenea, organizatia decide cum sa inceapa lansarea de nume pe piata. Se asteapta totusi ca noile extensii sa fie adaugate pe piata anual intr-un numar foarte mare. Sute de noi TLD-uri generice au fost lansate in ultimele luni. Domeniile premium cautate in cadrul diferitelor gTLD-uri noi – in prezent peste 25 de milioane (in iulie 2019) – pot fi inregistrate automat.

Cu ce ajuta un brand noile gTLD-uri?

In cadrul sistemului actual in care .com este cea mai populara extensie de domeniu, marketerii de brand si profesionistii SEO stiu care este adevarata valoare a unui nume de domeniu bun.

Indiferent daca este vorba despre site-ul principal al afacerii, un microsite vizat sau un nume de domeniu premium, numele descriptive au puterea de a face o companie sa iasa in evidenta in cautari, sa-si sporeasca pozitia in rezultatele cautarii organice si sa-si stabileasca o reputatie ca sursa de informatie fiabila si lider intr-o anumita categorie.

Pe masura ce sistemul de domenii se extinde pentru a include extensii descriptive de domeniu, exista mai multe motive pentru care companiile pot lua in considerare investitiile in aceste extensii:

  • Locatie excelenta – Daca noile gTLD-uri sunt adoptate, utilizate si acceptate in randul intreprinderilor si consumatorilor, acestea vor deschide noi nume premium la extensii de domeniu vizate, creand o oportunitate pentru intreprinderile de orice fel de a obtine un nume pe care ar fi trebuit sa plateasca sume considerabile de bani.
  • Crearea de comunitate – Extensiile bazate pe locatii, cum ar fi .nyc, .boston, .tokyo si altele au potentialul de a actiona ca etichete de locatie, ajutand site-urile web cu o harta catre zonele lor tinta din lumea fizica si sa construiasca o comunitate online sau sa fie utilizate in cautarile pe dispozitivele mobile.
  • Inovatie – Exista cu siguranta multe idei inovatoare care ies din acest nou spatiu de domeniu pe masura ce evolueaza, cu branduri mari precum BMW sau Nike, care vor avea un numar nelimitat de domenii. Imagineaza-ti fiecare BMW vandut venind cu propriul sau domeniu si site web, oferind proprietarului masinii si producatorului o platforma unica prin care sa interactioneze si sa promoveze in continuare marca in moduri pe care nimeni nu si le-a imaginat vreodata.
  • Fara restrictii – Extensii de domeniu care pot fi inregistrate, in general, fara restrictii de catre orice persoana. Acestea sunt .TATTOO, .NINJA, .GURU si .HORSE.

Ce avantaje ofera gTLD-urile?

Noile extensii de domenii gTLD vin cu o serie de avantaje de care fiecare afacere ar trebui sa profite pentru a-si face cunoscuta marca. Iata care sunt acestea:

  • Alegerea adresei dorite – Este destul de greu sa gasesti un domeniu atractiv si care sa transmita exact ceea ce iti doresti, in special din cauza faptului ca extensiile .net si .com sunt deja aproape epuizate. Cu un gTLD poti alege un nume care sa reprezinte cu exactitate marca ta. Cu ajutorul gTLD-urilor, prezenta pe Internet poate fi creata sub adrese web distincte pentru a se deosebi de alti concurenti.
  • Domenii concise – Adresele de Internet scurte si atragatoare sunt mai usor de retinut, ceea ce inseamna ca exista posibilitatea ca acestea sa se raspandeasca mai repede. Evita alegerea unor domenii greoaie. In schimb, utilizeaza o adresa usor de retinut pentru campaniile tale publicitare – atat online cat si offline.
  • Ideale pentru motoarele de cautare – Fiecare gTLD se raporteaza la un anumit subiect. Pe termen lung, motoarele de cautare vor tine cont de acest lucru. Site-urile care au noile extensii de domeniu vor avea avantaje in rezultatele motoarelor de cautare. Acest efect va fi vizibil mai ales in rezultatele cautarii locale.
  • Distinctie clara – Numele de domenii din noile gTLD-uri pot arata clar industria sau regiunea in care opereaza o companie. Utilizatorii de Internet isi pot viza site-ul web in mod specific catre publicul tinta – acest lucru va atrage direct clientii.

Odata cu introducerea gTLD-urilor, proprietarii de marci isi pot proteja brand-ul pe web si mai bine. Proprietarii marcilor comerciale sunt privilegiati sa inregistreze noi domenii de nivel superior care corespund marcilor lor prin Sunrise/Trademark holders. Aceasta perioada dureaza, de obicei, 30 de zile si este deschisa detinatorilor de marci inregistrate la Trademark Clearinghouse (TMCH). Aceasta optiune le permite sa inregistreze numele de domeniu care se potriveste cu marca comerciala, protejandu-si astfel marca. Pentru inregistrarea domeniilor in fazele Sunrise, este necesara o inregistrare in Clearinghouse pentru marci comerciale.

In cele din urma, noile gTLD-uri reprezinta o oportunitate rara pentru marketeri, profesionisti SEO, intreprinderi mari si marci consacrate. La fel ca primele domenii din anii 90, noile gTLD deschid porti catre nume descriptive, premium, care nu au fost niciodata inregistrate.