Rem*_*emi 6 wordpress pagination
当使用the_posts_pagination(参见codex)时,分页显示标题"post navigation".
是否有可能将其关闭?
例如使用类似的东西:
the_posts_pagination( array(
'title' => '', // this should hide the title
'prev_text' => __( 'Previous', 'twentyfifteen' ),
'next_text' => __( 'Next', 'twentyfifteen' ),
'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( '', 'nieuwedruk' ) . ' </span>',
) );
Run Code Online (Sandbox Code Playgroud)
小智 11
有"screen_reader_text"属性可以帮助您
the_posts_pagination( array(
'screen_reader_text' => ' ',
'prev_text' => __( 'Previous', 'twentyfifteen' ),
'next_text' => __( 'Next', 'twentyfifteen' ),
'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( '', 'nieuwedruk' ) . ' </span>',
) );
Run Code Online (Sandbox Code Playgroud)
注意:因此单引号之间的空格.