Why is ‘is_multisite’ returning true when it’s a single install?
If that’s the code you have in your plugin, you’re writing it wrong. You have if(is_multisite) which is treating the string is_multisite as a constant and evalutation to true. Essentially you’re writing if(true) … Remember, is_multisite() is a function. You need the parenthesis at the end for PHP to actually evaluate the function. Change your … Read more