Задать вопрос
  • Код из head грузится в body - Wordpress, как исправить?

    j13th
    @j13th Автор вопроса
    secretsergey, да, пропустил этот момент, спасибо, была с BOM
  • Код из head грузится в body - Wordpress, как исправить?

    j13th
    @j13th Автор вопроса
    Код function.php:

    <?php
    if (function_exists('add_theme_support')) {
        add_theme_support('menus');
    }
    register_nav_menus( array(
    		'headerMenu' => 'Основное меню(верхнее)',
    		'footerMenu1' => 'Дополнительное меню (футер)',
    		'footerMenu2' => 'Дополнительное меню 2(футер)'
    ) );
    
    function my_meta_noindex () {
     if (
     is_paged()
     ) {echo "".'<meta name="robots" content="noindex,follow" />'."\n";add_action ('wp_head', 'rel_canonical');}
     }
    add_action('wp_head', 'my_meta_noindex', 3);
    
    add_theme_support( 'post-thumbnails' );
    
    function new_excerpt_length($length) {
    	return 20;
    }
    add_filter('excerpt_length', 'new_excerpt_length');
    
    function new_excerpt_more($more) {
    	return '...';
    }
    
    add_action( 'wp_enqueue_scripts', 'corund_load_scripts' );
    
    function corund_load_scripts()
    {
    wp_register_style('style',get_stylesheet_directory_uri().'/css/style.css','','','all');
    wp_enqueue_style('style');
    }
    function my_wp_default_styles($styles) {
        $styles->default_version = filemtime(get_stylesheet_directory() .'/css/style.css' );
    }
    add_action("wp_default_styles", "my_wp_default_styles");
    
    remove_action( 'wp_head', 'feed_links_extra', 3 ); // Display the links to the extra feeds such as category feeds
    remove_action( 'wp_head', 'feed_links', 2 ); // Display the links to the general feeds: Post and Comment Feed
    remove_action( 'wp_head', 'rsd_link' ); // Display the link to the Really Simple Discovery service endpoint, EditURI link
    remove_action( 'wp_head', 'wlwmanifest_link' ); // Display the link to the Windows Live Writer manifest file.
    remove_action( 'wp_head', 'index_rel_link' ); // index link
    remove_action( 'wp_head', 'parent_post_rel_link', 10, 0 ); // prev link
    remove_action( 'wp_head', 'start_post_rel_link', 10, 0 ); // start link
    remove_action( 'wp_head', 'adjacent_posts_rel_link', 10, 0 ); // Display relational links for the posts adjacent to the current post.
    remove_action( 'wp_head', 'wp_generator' ); // Display the XHTML generator that is generated on the wp_head hook, WP version
    remove_action( 'wp_head', 'wp_shortlink_wp_head', 10, 0 );
    remove_action('wp_head', 'rel_canonical');
    remove_action('wp_head', 'print_emoji_detection_script', 7);
    remove_action('wp_print_styles', 'print_emoji_styles');
    
    add_filter( 'index_rel_link', 'disable_stuff' );
    add_filter( 'parent_post_rel_link', 'disable_stuff' );
    add_filter( 'start_post_rel_link', 'disable_stuff' );
    add_filter( 'previous_post_rel_link', 'disable_stuff' );
    add_filter( 'next_post_rel_link', 'disable_stuff' );
    
    show_admin_bar(false);
    
    function wph_cut_the_title($title) {
    $title = esc_attr($title);
    $findthese = array(
        '#Защищено:#',
        '#Личное:#'
    );
    $replacewith = array(
        '', //можно указать замену для "Защищено"
        ''  //можно указать замену для "Личное"
    );
    $title = preg_replace($findthese, $replacewith, $title);
    return $title;
    }
    add_filter('the_title', 'wph_cut_the_title');
    
    function urlmtime($url) {
       $parsed_url = parse_url($url);
       $path = $parsed_url['path'];
       if ($path[0] == "/") {
           $filename = $_SERVER['DOCUMENT_ROOT'] . "/" . $path;
       } else {
           $filename = $path;
       }
       if (!file_exists($filename)) {
           // If not a file then use the current time
           $lastModified = date('YmdHis');
       } else {
           $lastModified = date('YmdHis', filemtime($filename));
       }
       if (strpos($url, '?') === false) {
           $url .= '?ts=' . $lastModified;
       } else {
           $url .= '&ts=' . $lastModified;
       }
       return $url;
    }
    
    function include_javascript($javascript_url) {
       echo '<script type="text/javascript" src="' .
         urlmtime($javascript_url) .
         '"></script>'."\n";
    }
    
    function disable_stuff( $data ) {
    	return false;
    }
    
    /**
     * disable feed
     */
    function fb_disable_feed() {
     wp_redirect('/404');
    }
     
    add_action('do_feed', 'fb_disable_feed', 1);
    add_action('do_feed_rdf', 'fb_disable_feed', 1);
    add_action('do_feed_rss', 'fb_disable_feed', 1);
    add_action('do_feed_rss2', 'fb_disable_feed', 1);
    add_action('do_feed_atom', 'fb_disable_feed', 1);
    
    function dimox_breadcrumbs() {
    
    тут функция хлебных крошек, вся не влезла, ничего в ней такого нет
    }
    
    ?>
    <?php