解决WordPress主题Astra相关文章随机选项失效的问题

Astra是一款非常强大的WordPress主题,功能相当丰富。

文章页支持自定义显示相关文章列表,选项有栏目数量、排序方式等。

不过,按分类或标签中筛选时,随机Random选项无效果,原因是下拉框中value值有误。

WordPress主题Astra

使用版本

WordPress 5.8和Astra 3.6.8。

解决方法

把源代码中random换成rand即可,文件位置:

./wp-content/themes/astra/inc/modules/related-posts/customizer/class-astra-related-posts-configs.php

大约在362行:

'choices'   => array(
	'date'          => __( 'Date', 'astra' ),
	'title'         => __( 'Title', 'astra' ),
	'post-order'    => __( 'Post Order', 'astra' ),
	'rand'        => __( 'Random', 'astra' ),
	'comment-count' => __( 'Comment Counts', 'astra' ),
),

(版权归cpury.com所有,转载请注明出处。)