WP网站主页在每个特色帖子的开头显示URL链接

时间:2018-05-28 作者:Marcela

[我的wordpress网站主页在显示我的特色帖子文本之前会显示url代码。一旦在各自的页面中调用帖子,它们就会正常显示,因此问题就出现在主页上。如何防止这种情况发生?这里包含了我的主页的问题和地址的屏幕截图。2

    <?php
/**
 * The template file for single post page.
 *
 * @package    The Daybook
 * @version    1.1
 * @author     Elite Layers <[email protected]>
 * @copyright  Copyright (c) 2017, Elite Layers
 * @link       http://demo.elitelayers.com/thedaybook/
 * @license    http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License v2 or later
 */
 get_header(); ?>

    <div id="thedaybook-content" class="section">

        <div class="block">

            <div class="container">

                <div class="row">
<?php /* insert affiliate disclosure */
$affiliate_disclaimer = get_field( \'ad_affiliate_disclaimer\' );
if( in_array( \'yes\', $affiliate_disclaimer ) ) { ?>
    <p class="disclaimer"><strong>Heads up:</strong> My posts may contain affiliate links. If you buy something through one of those links, it won\'t cost you a penny more, but I might get a small commission to help to keep the lights on. I don\'t recommend any products I have not tried and love. <a class="nowrap" href="/legal/#affiliate"><small>Learn More &raquo;</small></a></p>
<?php } /* end affiliate disclosure */ ?>
                    <main id="main" class="<?php echo esc_attr(thedaybook_content_class());?>">

                         <?php if (have_posts()) : while (have_posts()) : the_post(); ?>

                             <?php get_template_part(\'parts/content\',\'single\'); ?>

                         <?php endwhile; ?>

                         <?php endif; ?>

                     </main>

                     <aside class="<?php echo esc_attr(thedaybook_sidebar_class());?>">
                        <?php get_sidebar();?>
                     </aside>

                </div>

             </div>

         </div>

    </div>

<?php get_footer(); ?>

2 个回复
SO网友:Mehul

检查您的代码,可能您输入了包含内容的post url代码

我是说喜欢。(URL代码)(内容代码)

我已经检查了您的问题,并找到了这些解决方案。

如果仍然面临问题,请将您的代码粘贴到这里,以便我能够理解。

SO网友:dhirenpatel22

我想问题出在home.php 主题文件夹中的文件。

也许你可以共享该文件的代码,以便我可以帮助你。

结束

相关推荐

Set plugin page as homepage

The Problem所以我安装了一个插件(iHomeFinder的Optima Express),它工作得非常好。它制作的页面是conradbowenrealestate.com/homes-for-sale-search. 然而,这个页面不是用WordPress制作的,它甚至不存在。我想将其设置为主页,但由于WordPress无法将其识别为WP页面,因此我无法将其设置为主页。Note that when viewing the source code, the \"page-id\" is 0.Wha