-
core
WordPress 5.3.1, 5.3.2
https://www.wp-plugin-api.com/version/wordpress-5-3-1/ https://www.wp-plugin-api.com/version/wordpress-5-3-2/ -
core
WordPress 5.3
https://www.wp-plugin-api.com/version/wordpress-5-3/ https://make.wordpress.org/core/2019/10/17/wordpress-5-3-field-guide/ -
core
WordPress 5.2.4
https://www.wp-plugin-api.com/version/wordpress-5-2-4/ -
core
WordPress 5.2.3
https://www.wp-plugin-api.com/version/wordpress-5-2-3/ https://www.wordfence.com/blog/2019/09/the-wordpress-5-2-3-security-release-unpacked/ -
theme_page_templates
Disable page’s “page templates” in page attributes
function hoge_remove_page_templates( $templates ) { // use unset() if you want to remove specific template // unset( $templates[‘page-templates/contributors.php’] ); // return $templates; // or just return empty array to remove the entire page templates input return array(); } add_filter( ‘theme_page_templates’, ‘hoge_remove_page_templates’ ); -
core
WordPress 5.2.2
https://www.wp-plugin-api.com/version/wordpress-5-2-2/ -
admin_init
Disable Comments
https://gist.github.com/mattclements/eab5ef656b2f946c4bfb -
Edit oembedded contents
Change excerpt length function wpa_oembed_excerpt_length() { return 20; } add_filter( ‘rest_oembed_output_excerpt_length’, ‘wpa_oembed_excerpt_length’, 9 ); Change oembedded content style function wpa_oembed_output() { ?> <style> .wp-embed { font-family: serif !important; } </style> <?php } add_action( ‘rest_oembed_output’, ‘wpa_oembed_output’, 11 ); -
core
WordPress 5.2.1 hooks
https://www.wp-plugin-api.com/version/wordpress-5-2-1/ -
core
WordPress 5.2 hooks
https://www.wp-plugin-api.com/version/wordpress-5-2/