我正在使用 wordpress seo yoast plugin 进入一个网站 . 在xml站点 Map 设置中,我启用了yoast插件站点 Map ,它运行正常 . 在管理面板中, taxonomy 名为"stores" . 这就像是类别 . 但是我需要在store-sitemap.xml文件中设置它的优先级 from 20% to 60% .

enter image description here

我添加了以下过滤器,并且在添加或编辑商店时无法显示以设置 priority .

add_filter( 'wpseo_metabox_prio', 'move_yoast_metabox_down' );

function move_yoast_metabox_down( $priority ) {
    return 'high';
}

但是可以在帖子类型中查看此优先级设置选项 .
enter image description here

如果有人有解决方案欣赏它 . 谢谢