Server IP : 162.0.215.126 / Your IP : 216.73.216.4 Web Server : LiteSpeed System : Linux business105.web-hosting.com 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP Thu Apr 17 19:10:24 UTC 2025 x86_64 User : tektomgb ( 586) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tektomgb/public_html/wp-content/ |
Upload File : |
<?php add_action( 'after_setup_theme', 'fortune88_setup' ); function fortune88_setup() { load_theme_textdomain( 'fortune88', get_template_directory() . '/languages' ); add_theme_support( 'title-tag' ); add_theme_support( 'automatic-feed-links' ); add_theme_support( 'post-thumbnails' ); global $content_width; if ( ! isset( $content_width ) ) $content_width = 640; register_nav_menus( array( 'contact-menu' => __( 'Contact Menu', 'fortune88' ), 'login-menu' => __( 'Login Menu', 'fortune88' ), 'games-menu' => __( 'Games Menu', 'fortune88' ), 'provider-menu' => __( 'Provider Menu', 'fortune88' )) ); } function prefix_nav_description( $item_output, $item, $depth, $args ) { if ( !empty( $item->description ) ) { $item_output = str_replace( $args->link_after . '</a>', '<span class="menu-item-description">' . $item->description . '</span>' . $args->link_after . '</a>', $item_output ); } return $item_output; } add_filter( 'walker_nav_menu_start_el', 'prefix_nav_description', 10, 4 ); add_action( 'wp_enqueue_scripts', 'fortune88_load_scripts' ); function fortune88_load_scripts() { wp_enqueue_script( 'jquery' ); } add_action( 'comment_form_before', 'fortune88_enqueue_comment_reply_script' ); function fortune88_enqueue_comment_reply_script() { if ( get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_filter( 'the_title', 'fortune88_title' ); function fortune88_title( $title ) { if ( $title == '' ) { return '→'; } else { return $title; } } add_filter( 'wp_title', 'fortune88_filter_wp_title' ); function fortune88_filter_wp_title( $title ) { return $title . esc_attr( get_bloginfo( 'name' ) ); } add_action( 'widgets_init', 'fortune88_widgets_init' ); function fortune88_widgets_init() { register_sidebar( array ( 'name' => __( 'Sidebar Widget Area', 'fortune88' ), 'id' => 'primary-widget-area', 'before_widget' => '<li id="%1$s" class="widget-container %2$s">', 'after_widget' => "</li>", 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); } function fortune88_custom_pings( $comment ) { $GLOBALS['comment'] = $comment; ?> <li <?php comment_class(); ?> id="li-comment-<?php comment_ID(); ?>"><?php echo comment_author_link(); ?></li> <?php } add_filter( 'get_comments_number', 'fortune88_comments_number' ); function fortune88_comments_number( $count ) { if ( !is_admin() ) { global $id; $comments_by_type = &separate_comments( get_comments( 'status=approve&post_id=' . $id ) ); return count( $comments_by_type['comment'] ); } else { return $count; } } function wpdocs_excerpt_more( $more ) { return sprintf( '<a class="read-more" href="%1$s">%2$s</a>', get_permalink( get_the_ID() ), __( ' Read Post', 'textdomain' ) ); } add_filter( 'excerpt_more', 'wpdocs_excerpt_more' ); // Remove jQuery Migrate Script from header and Load jQuery from Google API function crunchify_stop_loading_wp_embed_and_jquery() { if (!is_admin()) { wp_deregister_script('wp-embed'); wp_deregister_script('jquery'); // Bonus: remove jquery too if it's not required } } add_action('init', 'crunchify_stop_loading_wp_embed_and_jquery'); remove_action( 'wp_head', 'print_emoji_detection_script', 7 ); remove_action( 'admin_print_scripts', 'print_emoji_detection_script' ); remove_action( 'wp_print_styles', 'print_emoji_styles' ); remove_action( 'admin_print_styles', 'print_emoji_styles' ); function remove_recent_comments_style() { global $wp_widget_factory; remove_action('wp_head', array($wp_widget_factory->widgets['WP_Widget_Recent_Comments'], 'recent_comments_style')); } add_action('widgets_init', 'remove_recent_comments_style'); // Don't load Gutenberg-related stylesheets. add_action( 'wp_enqueue_scripts', 'remove_block_css', 100 ); function remove_block_css() { wp_dequeue_style( 'wp-block-library' ); // WordPress core wp_dequeue_style( 'wp-block-library-theme' ); // WordPress core wp_dequeue_style( 'wc-block-style' ); // WooCommerce wp_dequeue_style( 'storefront-gutenberg-blocks' ); // Storefront theme }