wp_head()和wp_footer不会加载unyson样式和脚本

时间:2018-07-22 11:30:32

标签: php wordpress

我尝试使用unyson框架在wordpress上建立我的第一个网站。

问题描述:

我用unyson制作了一个静态页面。当我尝试通过wordpress面板检查pagebuilder的结果时,一切都很好。我的意思是每种样式和脚本都处于活动状态。

但是我需要在我的front-page.php上显示此静态页面 所以我做了这样的结构:

<?php
get_header(); ?>

<div class="three-features">
    <div class="container section-padding">
            <?php

                $tf_content = get_post_field('post_content',11);
                $tf_content = apply_filters('the_content', $tf_content);

                echo $tf_content
            ?>
    </div>
</div>

<?php
get_footer();
?>

加载我的front-page.php之后,我得到了页面内容的原始结构,而没有来自unyson的任何样式。因此,我检查了源代码,发现在front-page.php上加载了样式表和脚本,但是当我通过WP Panel预览选项检查源代码时,它们是可用的。

总而言之,wp_head()和wp_footer存在问题,因为它们没有加载需要Unyson的所有必要样式和脚本。

您可以从WP Panel Preview中获得所有必需的样式和脚本的列表。

<link rel='dns-prefetch' href='//fonts.googleapis.com' />
    <link rel='dns-prefetch' href='//s.w.org' />
    <link rel="alternate" type="application/rss+xml" title="Firmowa &raquo; Kanał z wpisami" href="http://firmowa.local/index.php/feed/" />
    <link rel="alternate" type="application/rss+xml" title="Firmowa &raquo; Kanał z komentarzami" href="http://firmowa.local/index.php/comments/feed/" />
    <link rel='stylesheet' id='dashicons-css'  href='http://firmowa.local/wp-includes/css/dashicons.min.css?ver=4.9.7' type='text/css' media='all' />
    <link rel='stylesheet' id='admin-bar-css'  href='http://firmowa.local/wp-includes/css/admin-bar.min.css?ver=4.9.7' type='text/css' media='all' />
    <link rel='stylesheet' id='materialwp-material-icons-css'  href='//fonts.googleapis.com/css?family=Roboto%3A300%2C400%2C500%2C700%7CMaterial+Icons&#038;ver=0.0.5' type='text/css' media='all' />
    <link rel='stylesheet' id='materialwp-style-css'  href='http://firmowa.local/wp-content/themes/custom-szymon/style.min.css?ver=0.0.5' type='text/css' media='all' />
    <link rel='stylesheet' id='fw-ext-builder-frontend-grid-css'  href='http://firmowa.local/wp-content/plugins/unyson/framework/extensions/builder/static/css/frontend-grid.css?ver=1.2.10' type='text/css' media='all' />
    <link rel='stylesheet' id='fw-ext-forms-default-styles-css'  href='http://firmowa.local/wp-content/plugins/unyson/framework/extensions/forms/static/css/frontend.css?ver=2.7.19' type='text/css' media='all' />
    <link rel='stylesheet' id='fw-shortcode-section-background-video-css'  href='http://firmowa.local/wp-content/plugins/unyson/framework/extensions/shortcodes/shortcodes/section/static/css/background.css?ver=4.9.7' type='text/css' media='all' />
    <link rel='stylesheet' id='fw-shortcode-section-css'  href='http://firmowa.local/wp-content/plugins/unyson/framework/extensions/shortcodes/shortcodes/section/static/css/styles.css?ver=4.9.7' type='text/css' media='all' />
    <link rel='stylesheet' id='fw-shortcode-special-heading-css'  href='http://firmowa.local/wp-content/plugins/unyson/framework/extensions/shortcodes/shortcodes/special-heading/static/css/styles.css?ver=4.9.7' type='text/css' media='all' />
    <link rel='stylesheet' id='font-awesome-css'  href='http://firmowa.local/wp-content/plugins/unyson/framework/static/libs/font-awesome/css/font-awesome.min.css?ver=2.7.19' type='text/css' media='all' />
    <link rel='stylesheet' id='fw-shortcode-icon-box-css'  href='http://firmowa.local/wp-content/plugins/unyson/framework/extensions/shortcodes/shortcodes/icon-box/static/css/styles.css?ver=4.9.7' type='text/css' media='all' />
    <script type='text/javascript' src='http://firmowa.local/wp-includes/js/jquery/jquery.js?ver=1.12.4'></script>
    <script type='text/javascript' src='http://firmowa.local/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1'></script>
    <link rel='https://api.w.org/' href='http://firmowa.local/index.php/wp-json/' />
    <link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://firmowa.local/xmlrpc.php?rsd" />
    <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://firmowa.local/wp-includes/wlwmanifest.xml" />
    <meta name="generator" content="WordPress 4.9.7" />
    <link rel="canonical" href="http://firmowa.local/index.php/trzy-cechy/" />
    <link rel='shortlink' href='http://firmowa.local/?p=11' />
    <link rel="alternate" type="application/json+oembed" href="http://firmowa.local/index.php/wp-json/oembed/1.0/embed?url=http%3A%2F%2Ffirmowa.local%2Findex.php%2Ftrzy-cechy%2F" />
    <link rel="alternate" type="text/xml+oembed" href="http://firmowa.local/index.php/wp-json/oembed/1.0/embed?url=http%3A%2F%2Ffirmowa.local%2Findex.php%2Ftrzy-cechy%2F&#038;format=xml" />

和必要的脚本:

<script type='text/javascript' src='http://firmowa.local/wp-includes/js/admin-bar.min.js?ver=4.9.7'></script>
<script type='text/javascript' src='http://firmowa.local/wp-content/themes/custom-szymon/js/dist/scripts.min.js?ver=%20'></script>
<script type='text/javascript' src='http://firmowa.local/wp-content/plugins/unyson/framework/extensions/shortcodes/shortcodes/section/static/js/core.js?ver=4.9.7'></script>
<script type='text/javascript' src='http://firmowa.local/wp-content/plugins/unyson/framework/extensions/shortcodes/shortcodes/section/static/js/transition.js?ver=4.9.7'></script>
<script type='text/javascript' src='http://firmowa.local/wp-content/plugins/unyson/framework/extensions/shortcodes/shortcodes/section/static/js/background.js?ver=4.9.7'></script>
<script type='text/javascript' src='http://firmowa.local/wp-content/plugins/unyson/framework/extensions/shortcodes/shortcodes/section/static/js/background.init.js?ver=4.9.7'></script>
<script type='text/javascript' src='http://firmowa.local/wp-includes/js/wp-embed.min.js?ver=4.9.7'></script>

在front-page.php上,wp_head()和wp_foooter()仅在加载:

<link rel='stylesheet' id='dashicons-css'  href='http://firmowa.local/wp-includes/css/dashicons.min.css?ver=4.9.7' type='text/css' media='all' />
<link rel='stylesheet' id='admin-bar-css'  href='http://firmowa.local/wp-includes/css/admin-bar.min.css?ver=4.9.7' type='text/css' media='all' />
<link rel='stylesheet' id='materialwp-material-icons-css'  href='//fonts.googleapis.com/css?family=Roboto%3A300%2C400%2C500%2C700%7CMaterial+Icons&#038;ver=0.0.5' type='text/css' media='all' />
<link rel='stylesheet' id='materialwp-style-css'  href='http://firmowa.local/wp-content/themes/custom-szymon/style.min.css?ver=0.0.5' type='text/css' media='all' />
<link rel='stylesheet' id='fw-ext-builder-frontend-grid-css'  href='http://firmowa.local/wp-content/plugins/unyson/framework/extensions/builder/static/css/frontend-grid.css?ver=1.2.10' type='text/css' media='all' />
<link rel='stylesheet' id='fw-ext-forms-default-styles-css'  href='http://firmowa.local/wp-content/plugins/unyson/framework/extensions/forms/static/css/frontend.css?ver=2.7.19' type='text/css' media='all' />
<script type='text/javascript' src='http://firmowa.local/wp-includes/js/jquery/jquery.js?ver=1.12.4'></script>
<script type='text/javascript' src='http://firmowa.local/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1'></script>
<link rel='https://api.w.org/' href='http://firmowa.local/index.php/wp-json/' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://firmowa.local/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://firmowa.local/wp-includes/wlwmanifest.xml" /> 
<meta name="generator" content="WordPress 4.9.7" />
<link rel="canonical" href="http://firmowa.local/" />
<link rel='shortlink' href='http://firmowa.local/' />
<link rel="alternate" type="application/json+oembed" href="http://firmowa.local/index.php/wp-json/oembed/1.0/embed?url=http%3A%2F%2Ffirmowa.local%2F" />
<link rel="alternate" type="text/xml+oembed" href="http://firmowa.local/index.php/wp-json/oembed/1.0/embed?url=http%3A%2F%2Ffirmowa.local%2F&#038;format=xml" />
<link rel="pingback" href="http://firmowa.local/xmlrpc.php">

AND:

<script type='text/javascript' src='http://firmowa.local/wp-includes/js/admin-bar.min.js?ver=4.9.7'></script>
<script type='text/javascript' src='http://firmowa.local/wp-content/themes/custom-szymon/js/dist/scripts.min.js?ver=%20'></script>
<script type='text/javascript' src='http://firmowa.local/wp-includes/js/wp-embed.min.js?ver=4.9.7'></script>

很抱歉,我需要详细说明,但我想与大家分享我检查过的所有内容。

0 个答案:

没有答案