Code-Snippets-Functions/Execute a function on a child site/Ajax Load More/remove-alm-thumbnail-image-size.txt

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 );