Debug.php file not generating in wp-content folder
Debug.php file not generating in wp-content folder
Debug.php file not generating in wp-content folder
How to resolve error in debug.log file
Turning off debug in my WP blog causes an internal error
Somewhere in the codebase, the function or method is_tax() is being called before WordPress knows what content is being requested. Using a plugin like Query Monitor will help determine it’s source. There may also be a stack trace in wp-content/debug.log (if WordPress is setup with debug constants). This would not be a symptom of lazy … Read more
In Chrome, open DevTools and go to the Network tab. Now click the Fetch/XHR filter. Then, click Publish and watch the Network traffic to see if any errors are being returned. That should give you an indication of where things are going wrong. You might see a 500 error returned on the Publish call.
What the issue ended up being is embarrassing! I had used the xdebug configuration as the entire launch.json file: { “name”: “Listen for XDebug”, “type”: “php”, “request”: “launch”, “port”: 9003, “pathMappings”: { “/var/www/html/wp-content/plugins/my-plugin”: “${workspaceFolder}/” } } As opposed to the correct: { “version”: “0.2.0”, “configurations”: [ { “name”: “Listen for XDebug”, “type”: “php”, “request”: “launch”, … Read more
Any wordpress development tool to query its functions?
Why does my site generate .bt files?
If you want to develop a plugin or theme, you need a set of development toolkit. Use the Developer plugin to install debug bar and debug monitor. Those will tell you which function is deprecated if yes. Moreover, when you develop plugin. You should read the document of WordPress and whatever plugin you are going … Read more
Concerning your question: Can my theme be submitted for approval with these errors? I’m assuming you’re asking whether your plugin, while throwing an error upon activation using TGM library, can still be submitted and accepted to official WordPress repository. My answer would be, no, it cannot. It seems like you made your plugin work once … Read more