2013-03-11, 05:14:11
I didn't need to publish a component on one page of my site. So I wrote this code:
It worked!
Code:
if( return_page_slug() == 'page1' ) {
get_component( FALSE );
} else {
get_component( 'my_component' );
}
It worked!