如何为模板创建内容类?

时间:2019-02-11 20:08:17

标签: wordpress wordpress-theming custom-wordpress-pages

我正在尝试基于调用main-content类的主题设置创建模板。 我的template.php文件是:

`<?php /** * Template Name: Post Half Width Column
 * Template Post Type: post
*/ ?>
<?php
wp_enqueue_style( 'main-template', get_template_directory_uri() .        '/css/half-width.css' );
get_header();
?>
<?php
get_header(); ?>
<div id="main-content" class="post-main-content">
<?php
while ( have_posts() ) : the_post();
    get_template_part( 'content', 'page' );
endwhile;
?>
</div><!-- #main-content -->
<?php
get_footer();
?>`

原始主题模板指定了class="main-content"而不是class="post-main-content"

我找不到{。{cs}}在{css中的位置,因此没有检查标准位置,所以我想我可以在包含以下内容的子主题中创建自己的.css。

.main-content

然后从主题style.css复制其余内容 我在这里做什么错了?

0 个答案:

没有答案