Viewing 1 replies (of 1 total)
  • Plugin Author Alimir

    (@alimir)

    Hi @licomic

    Yes, but you have to manually create a hook for it. e.g.

    function wp_ulike_custom_content_filter( $button, $content ){
    	if ( in_the_loop() && is_main_query() && is_singular() && has_category( array('uncategorized') ) ){
    		return $button;
    	}
    
    	return $content;
    }
    add_filter( 'wp_ulike_the_content', 'wp_ulike_custom_content_filter', 2, 10 );
Viewing 1 replies (of 1 total)
  • The topic ‘Display by Post Category’ is closed to new replies.