I recently wrote my first WP plugin that adds a shortcode for embedding a custom jquery image gallery into posts. It’s primarily just dumps a good chunk of HTML into the post, along with javascript necessary for initialization.
However, I had to build the HTML output procedurally, as a string in PHP. This kind of tag soup always drives me nuts, and I’m used to working with MVC frameworks which provide things like helper functions and partial templates for generating HTML.
What is the general approach for plugin authors who need to manage large amounts of dynamically built HTML or JS?
@Byran M. I tend to use two constructs I don’t often see other WordPress developers using often, which surprises me, but I like them a lot.
1.) Heredocs
You can store large blocks of text as heredocs string that might look like this so I can store worrying about mixing single and double quotes:
Note that the variables might be passed to a function as an array and then
extract()
ed or you could assign them in other ways. Also note that I use the braces not because they are always required but they make the code easier to read. (Of course with functions likethe_content()
being materially different fromget_the_content()
WordPress doesn’t always make this style of coding easy.)What’s more, although it may not be relevant to you is if I use heredoc names like HTML, SQL, etc. then my IDE PhpStorm does syntax injection and will give me autocomplete and syntax coloring within the heredoc.
2.) String Concatenation using an Array
The other idiom I like to use is to collect the content into an array and then
implode()
the array. Although I’ve never benchmarked this so it could be less helpful than I assume I do know that repeated string concatenation is a killer as strings get larger (if anyone knows why this approach isn’t any better or if you know a better approach I’d love to hear feedback):Checkout this function for PHP:
http://php.net/manual/en/function.ob-start.php
You can buffer an included file which would just contain html code in it, into a php variable. This will make it cleaner to maintain.
So you end up with something like this:
Then you can just return $includedhtml where you need it and it keeps your html content seperate from having to echo it all out inside of php strings.
I haven’t actually used this framework, but the template model it offers will probably appeal. You might want to take a look at how the author set that up.
https://github.com/Emerson/Sanity-Wordpress-Plugin-Framework
That depends on the type of HTML and JS.
JavaScript
First of all, separate the dynamic parts from the static parts as much as possible. Then load whatever dynamic variables you need at runtime and queue your static scripts in the header (or footer, whatever). But this way, the majority of your JS is separate from your PHP.
HTML
This is a matter of building your code cleanly in the PHP. If you have huge chunks of HTML that you’re going to re-use, I’d store those as separate variables. Then piecing things together when the shortcode is called is as simple as:
Rather than trying to build it out procedurally, build an object (yes, PHP supports objects) that contains all of your different HTML blocks, then instruct it which ones to use and which data to pass back. This will save you huge amounts of time.