我有以下代码:
add_filter( \'the_title\', function() {
return "";
});
或者,根据胡克的论点:
function remove_title( $title, $id ) {
$title = \'\';
return $title;
}
add_filter( \'the_title\', \'remove_title\', 999, 2);
将其放置在自定义页面中,我的模板(该页面使用)为:
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main">
<header class="entry-header">
<?php the_title(\'<h1 class="entry-title">\', \'</h1>\'); ?>
</header><!-- .entry-header -->
<?php
while ( have_posts() ) :
the_post();
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php
the_content();
?>
</article><!-- #post-<?php the_ID(); ?> -->
<?php
endwhile; ?>
</main><!-- #main -->
</div><!-- #primary -->
<?php
get_footer();