Support

Account

Home Forums Backend Issues (wp-admin) Restricting acf_add_local_field_group to specific blogs in network Reply To: Restricting acf_add_local_field_group to specific blogs in network

  • Hi @spacedragon

    You could simply wrap the functions in an if statement checking the current blog id 🙂

    
    <?php if( get_current_blog_id() == 1 ){
    	echo 'This would only show on the first blog (the primary)';
    } ?>