我正在使用Twenty Fourteen Wordpress主题中标准提供的精选内容滑块。它几乎完成了我想要它做的所有事情,我已经使用CSS对它进行了一些基本的自定义,但是在与一些内部人员交谈后,他们正在寻找"插入"这进入页面的主要内容区域。
我已经浏览了一下,并找到了更改index.php文件的建议,以更改注册特色内容的PHP语句的位置。在对我的孩子主题进行这些更改并发布后,没有任何事情发生。
我完全不知道下一步要去哪里或要改变什么(没有试验和错误可能会破坏一切!)
这可能是一个非常简单的解决方案,如果是这种情况,我完全忽略了这样的道歉。这是一个内部网站,所以我不能提供任何链接。非常感谢您的帮助!
Index.php当前代码:
get_header(); ?>
<div id="main-content" class="main-content">
<div id="primary" class="content-area">
<div id="content" class="site-content" role="main">
<?php
if ( have_posts() ) :
// Start the Loop.
while ( have_posts() ) : the_post();
/*
* Include the post format-specific template for the content. If you want to
* use this in a child theme, then include a file called called content-___.php
* (where ___ is the post format) and that will be used instead.
*/
get_template_part( 'content', get_post_format() );
<?php
if ( is_front_page() && twentyfourteen_has_featured_posts() ) {
// Include the featured content template.
get_template_part( 'featured-content' );
}
?>
此外,精选内容目前位于页面顶部,不适合内容和主要侧边栏(位于主要侧边栏右侧的内容侧边栏上方。
答案 0 :(得分:0)
如果您担心破坏现场网站,那么您应该复制一下您所拥有的内容,然后在您的计算机上本地安装。
WAMP非常适合这种情况,如果您正在运行Windows,并使您的计算机充当Apache Web服务器。
继续之后,如果您可以提供一些代码,显示您的精选内容滑块的位置,将会很有帮助。
并确保您正在为您的主题编辑正确的文件。