谁能告诉我如何从主页隐藏帖子元数据?我想让他们只显示在后页。
这是我的网站http://studyor.comuf.com 主题由artisteer制作
谢谢
编辑从下面复制/粘贴的代码:
<?php get_header(); ?>
<div class="art-layout-wrapper">
<div class="art-content-layout">
<div class="art-content-layout-row">
<div class="art-layout-cell art-content">
<?php get_sidebar(\'top\'); ?>
<?php
if(have_posts()) {
/* Display navigation to next/previous pages when applicable */
if ( theme_get_option(\'theme_\' . (theme_is_home() ? \'home_\' : \'\') . \'top_posts_navigation\' ) ) {
theme_page_navigation();
}
/* Start the Loop */
while (have_posts()) {
the_post();
get_template_part(\'content\', get_post_format());
}
/* Display navigation to next/previous pages when applicable */
if (theme_get_option(\'theme_bottom_posts_navigation\')) {
theme_page_navigation();
}
} else {
theme_404_content();
}
?>
<?php get_sidebar(\'bottom\'); ?>
<div class="cleared"></div>
</div>
<div class="art-layout-cell art-sidebar1">
<?php get_sidebar(\'default\'); ?>
<div class="cleared"></div>
</div>
<div class="art-layout-cell art-sidebar2">
<?php get_sidebar(\'secondary\'); ?>
<div class="cleared"></div>
</div>
</div>
</div>