Wordpress不需要输入文章标题,至少不需要在后端输入。你可以把表格的那部分留空。
就你的主题而言,这将取决于主题作者以及他们是否考虑过没有输入标题的人。默认的twentyeleven主题处理得很好,使用发布日期链接到帖子页面,但并非所有作者都会这么周到。如果您使用的主题没有其他选择,可以尝试编辑循环。
根据主题的设置方式,可能只有一个循环,也可能有几个循环用于不同的目的。您正在查找与归档、类别、标记、搜索和主页相关的循环。通常会有一个“默认”循环,只获取所有这些值(“loop.php”)。查找带有标题标记和<? the_title(); ?>
在他们里面。大多数看起来像这样:
<h2 class="entry-title">
<a href="<?php the_permalink(); ?>" ><?php the_title(); ?></a>
</h2>
从各方面考虑,你通常可以把这件事放在一边。当没有文本可供填写时
<h2>
上面的标记只是折叠并消失。问题是,如果这是唯一的链接,您需要其他东西来链接到帖子页面。二十一世纪的主题正好提供了这一点。将此函数添加到函数文件:
function twentyeleven_posted_on() {
printf( __( \'<span class="sep">Posted on</span>
<a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date"
datetime="%3$s" pubdate>%4$s</time></a><span class="by-author">
<span class="sep"> by </span>
<span class="author vcard">
<a class="url fn n" href="%5$s" title="%6$s" rel="author">%7$s</a>
</span></span>\', \'twentyeleven\' ),
esc_url( get_permalink() ),
esc_attr( get_the_time() ),
esc_attr( get_the_date( \'c\' ) ),
esc_html( get_the_date() ),
esc_url( get_author_posts_url( get_the_author_meta( \'ID\' ) ) ),
esc_attr( sprintf( __( \'View all posts by %s\', \'twentyeleven\' ), get_the_author() ) ),
get_the_author()
);
}
然后,您可以在标题显示位置附近的循环中调用它:
<h2 class="entry-title">
<a href="<?php the_permalink(); ?>" ><?php the_title(); ?></a>
</h2>
<?php twentyeleven_posted_on() ?>
希望这有帮助!