日期:2022-01-08 阅读:344
可以在functions.php下加如下代码:
function remove_theme_update_notification( $value ) {
if ( isset( $value ) && is_object( $value ) ) {
unset( $value->response['astra'] ); //替换为自己的主题名称
}
return $value;
}
add_filter( 'site_transient_update_themes', 'remove_theme_update_notification' );
-----------
既然时加在functions.php里,则是当主题启动时才有用。