Untitled

Anonymous
php
05/11/2022 5:53 PM
264 B
16
Indexable
add_action( 'wpel_before_apply_link', function ( $link ) {
    global $post;
    // check if it belongs to gear category
    if(in_category(34), $post) {
        $link->set_ignore();
    }
}, 10 );
Editor is loading...