我正在做一个项目,我有一个很好的开始,但我需要一件重要的事情才能向人们展示/进行演示。
我的项目:在此处输入链接描述
在主页 (index.php) 上,它看起来不错,现在应该如何查找。当您单击其他页面(关于、FAQ、Epayments 等...)时,它不会显示带有左侧链接的菜单栏。
我认为这样的事情会很有效:
/* Single post single.php CSS file */
#content {
background:#b4d2f7;
float:right;
position:relative;
width:55%;
height:25%;
right:25%;
}
#content li {
}
#content ul {
}
#content .menu {
background:#123456;
position:relative;
float:left;
width:50%;
}
但它根本不起作用,没有移动或改变任何东西(是的,我确定我正确调用了 div)
这是在所有页面上显示当前文本的内容:
<article id="content">
<?php get_template_part( 'nav', 'above-single' ); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'entry' ); ?>
<?php comments_template('', true); ?>
<?php endwhile; endif; ?>
<?php get_template_part( 'nav', 'below-single' ); ?>
</article>
我真的不太了解 PHP,这对我来说是一个巨大的学习过程,所以如果你可以请发布任何有帮助的链接。如果您发布代码,即使它们含糊不清,我也想要一些评论。