So I am building a theme options framework for my ThemeForest themes but I got a little bit stuck… If I add all the code into the “functions.php” file it will be fired each and every time… Is there a nice way to check if the current site is a admin menu page? Or even better if the page is my framework.
- Sold between 250 000 and 1 000 000 dollars
- Exclusive Author
- Interviewed on the Envato Notes blog
- Author was Featured
- Item was Featured
- Beta Tester
- Author had a File in an Envato Bundle
- Author had a Free File of the Month
BroOf said
So I am building a theme options framework for my ThemeForest themes but I got a little bit stuck… If I add all the code into the “functions.php” file it will be fired each and every time… Is there a nice way to check if the current site is a admin menu page? Or even better if the page is my framework.
Every time you refresh a page, admin or not, the whole framework runs once, everytime (obviously).
If you don’t want to execute your admin script just check with is_admin();
Parker
Hey ParkerAndKent,
thank you it makes sense.
