Disable bwp-minifi for a single post
-
Hi,
I am trying to disable bwp-minifi for a single post
the cde I have added to the functions file isfunction checkPostID(){
// grab post object
$currentPost = get_post();
// compare them
if ( $currentPost->ID == <<–ThepostID–>>) {
// we have a match, so let’s filter the content now
add_filter(‘bwp_minify_is_loadable’, ‘__return_false’ );
}
}
add_action( ‘the_posts’, ‘checkPostID’ );where <<–thepostid–>> is the ID of the relevant post
whilst the function is firing, and identifying the correct post, the bwp_minify_is_loadable filter is not being applied.
I suspect t is because the function is firing too late.
Any suggestions
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Disable bwp-minifi for a single post’ is closed to new replies.