了解了如何操作,我在中添加了以下内容content.php
. 我添加了第二条elseif语句,并在显示页面标题之前简单地将word文档放在其中。
if ( is_single() ) {
the_title( \'<h1 class="entry-title">\', \'</h1>\' );
}
elseif (get_post_type() == \'attachment\' ) {
the_title( \'<h1 class="entry-title">Document: <a href="\' . esc_url( get_permalink() ) . \'" rel="bookmark">\', \'</a></h1>\' );
}
else {
the_title( \'<h1 class="entry-title"><a href="\' . esc_url( get_permalink() ) . \'" rel="bookmark">\', \'</a></h1>\' );
}