mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
https://wordpress.org/support/topic/improve-documentation-how-to-disable-for-specific-post-types/
6 lines
219 B
Text
6 lines
219 B
Text
add_action( 'wp', 'disable_image_optimization' );
|
|
function disable_image_optimization() {
|
|
if ( is_singular('my_post_type') ) {
|
|
add_filter( 'imagify_allow_picture_tags_for_webp', '__return_false' );
|
|
}
|
|
}
|