mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
5 lines
213 B
Text
5 lines
213 B
Text
function alm_remove_image_size() {
|
|
global $ajax_load_more;
|
|
remove_filter( 'after_setup_theme', array( $ajax_load_more, 'alm_image_sizes' ) );
|
|
}
|
|
add_action( 'after_setup_theme', 'alm_remove_image_size', 1 );
|