我正在尝试配置我的内容页。php,但我正在努力解决一些“错误”。
<article id="post-<?php the_ID(); ?>">
<div class="page_content">
<h1><?php the_title(); ?></h1>
**<p class="page_tekst">
<?php the_content(); ?>
</p>**
</div>
</article>
这是我的css内容
.page_content
{
width:820px;
height:auto;
margin-bottom:50px;
}
.page_tekst
{
text-align:justify;
float:left;
}
这是我的浏览器中的结果
<article id="post-81">
<div class="page_content">
<h1>test</h1>
<p class="page_tekst">
<p>This is a test based on the current css code</p>
</p>
</article>
上的我的css。page\\u tekst不起作用。我也明白为什么,但有解决办法吗?你能做一个div或p标签,给它打一个电话,然后把内容放在这个标签里,而不需要用内容做另一个p标签吗?