我使用the_posts_pagination在Wordpress上创建我的分页链接,但是我想用字体代替'prev‘和'next’。这个是可能的吗?
我已经在网站的其他地方使用字体。
向詹姆斯问好
发布于 2016-10-31 10:45:38
例如,您可以用funcion来更改文本。
the_posts_pagination( array(
'prev_text' => __( '<i class="fa fa-arrow-left"></i>', 'textdomain' ),
'next_text' => __( '<i class="fa fa-arrow-right"></i>', 'textdomain' ),
) );你可以用任何图标,我用的是fa-arrow图标。
https://wordpress.stackexchange.com/questions/244553
复制相似问题