Denis Žoljom
Denis Žoljom
I tried playing locally with the XML config file, butcouldn't get it to work no matter what I tried. For instance, I tried globally setting ```xml ``` and for the...
This seems like a better way (if you're already using OOP in your plugin) to add page templates to your plugin: http://www.wpexplorer.com/wordpress-page-templates-plugin/
You want to set `TEXTDOMAIN` as a constant, or? Because you shouldn't do that (it has to do something how the gettext handles translation). https://markjaquith.wordpress.com/2011/10/06/translating-wordpress-plugins-and-themes-dont-get-clever/
What does this have to do with the boilerplate itself? You need to provide the code you added in order for anybody to be able to help you ;)
Enqueue it as a js script?
Don't think you can do that since vue cli should be installed on the server, and on the majority of hosts, the user doesn't have the privilege to install such...
@raquelmsmith did you take a look at https://github.com/ahmadawais/create-guten-block? Ahmad did a great job with this one, and it can give you an idea how to adopt that plugin structure to...
Doubt it, since it's not an official WordPress plugin boilerplate...
What you linked is a way to integrate your plugin/lib with wp-cli, but it won't be _bundled_ with wp-cli 😉 To clarify: you can add code in the plugin boilerplate...
Did you require the `Plugin_Name` class when extending the `Plugin_Name_Public` class? If I'm not mistaken, there is no autoloader in this boilerplate so things won't just work on their own...