Hi,
The date is disabled only on the custom page templates and on the full-width template page. The author can be disabled on pages at the basic settings, the comments and permalinks can be disabled on the page editor. If you need to totally remove the date from all pages you can edit the file:
layouts/content.post.header.php
and change fragment:
- Code: Select all
<?php if((!is_page_template('template.fullwidth.php') && ('post' == get_post_type() || 'page' == get_post_type())) && get_the_title() != '') : ?>
<?php gk_post_meta(); ?>
<?php endif; ?>
to:
- Code: Select all
<?php if(!is_page() && (!is_page_template('template.fullwidth.php') && ('post' == get_post_type() || 'page' == get_post_type())) && get_the_title() != '') : ?>
<?php gk_post_meta(); ?>
<?php endif; ?>