我有一些代码
'next_text' => sprintf( esc_html__( '%s', 'mytheme' ), '%title' ),
我需要在其中添加 html。基本上我想补充
<span>Previous article</span>
在标题之前。我怎样才能做到这一点?
编辑:完整的功能是
function mytheme_single_post_navigation() {
if ( ! is_singular( 'post' ) ) {
return;
}
if ( ! intval( mytheme_get_theme_mod( 'blog_single_navigation' ) ) ) {
return;
}
the_post_navigation( array(
/* translators: %s: title syntax. */
'prev_text' => sprintf( esc_html__( '%s', 'mytheme' ), '%title' ),
/* translators: %s: title syntax. */
'next_text' => sprintf( esc_html__( '%s', 'mytheme' ), '%title' ),
) );
}
endif;
慕莱坞森