get_uri(), 'siteUrl' => trailingslashit( home_url() ), 'ajaxUrl' => admin_url( 'admin-ajax.php' ), 'adminUrl' => trailingslashit( admin_url() ), 'nonce' => wp_create_nonce( 'blockify' ), 'icon' => get_icon( 'social', 'blockify' ), 'siteEditor' => $current_screen && $current_screen->base === 'site-editor', 'excerptLength' => apply_filters( 'excerpt_length', 55 ), ] ); } // Prevent special characters converting to emojis (arrows, lines, etc.). remove_action( 'wp_head', 'print_emoji_detection_script', 7 ); add_action( 'wp_enqueue_scripts', NS . 'enqueue_scripts', 10 ); /** * Register proxy handle for inline frontend scripts. * * Called in styles.php to share page content string. * * @since 0.0.27 * * @return void */ function enqueue_scripts(): void { $handle = get_template(); wp_register_script( $handle, '', [], wp_get_theme()->get( 'version' ), true ); wp_add_inline_script( $handle, reduce_whitespace( trim( apply_filters( 'blockify_inline_js', '', (string) ( $GLOBALS['template_html'] ?? '' ) ) ) ) ); wp_enqueue_script( $handle ); }