只需更换a> <a
具有a><a
:
echo str_replace( \'a> <a\', \'a><a\', wp_link_pages( array ( \'echo\' => FALSE ) ) );
如果你还想删除未链接数字周围的空格,我建议在主题的
functions.php
要保持代码可读性,请执行以下操作:
function trimmed_link_pages( $args = array () )
{
$args[\'echo\'] = FALSE;
$links = wp_link_pages( $args );
$links = str_replace(
array ( \'a> \', \' <a\', \':<a\' ),
array ( \'a>\', \'<a\', \': <a\' ),
$links
);
print $links;
}
像这样使用它
wp_link_pages()
:
if ( have_posts() )
{
while ( have_posts() )
{
the_post();
print \'<h2><a href="\' . get_permalink() . \'">\' . get_the_title() . \'</a></h2>\';
the_content();
trimmed_link_pages();
}
}
相关:
Changing Link Attributes for Wp_Link_Pages.