TODO:
Hey Sammie,
TODO:
Hey Sammie,
TODO:
/**
* NOT IMPLEMENTED YET
* @example
*
* # EXAMPLE
*
* {collection list="red, green, blue" assign_to="colors"}
* // OR
* {collection item="red" assign_to="colors"}
* {collection item="green" assign_to="colors"}
* {collection item="blue" assign_to="colors"}
*
* <ul>
* {foreach $colors as $color}
* <li>{$color}</li>
* {/foreach}
* <ul>
*
* // OR
*
* {unset var="colors"}
*
*
*/
TODO:
/**
* Outputs the Googlg Analitics script TAG. This binder also verifies the referral IP
* address against a black list og analytics spammers.
*
* @param {string} $ua Google Analytics account number
* @param {string} $exclude IPs to exclude separated by comma
*
* @example
*
* {{ga ua="UA-61505055-1"}}
*
*/
TODO
When building a project you have the option to upload static files to your project. This is very handy if want to use certain images, fonts, or files that you want to keep outside of WordPress, and are mainly needed for the design of your project.
If you wonder where your files go after uploading your resources, the answer is simple: they for to the resources folder in your website.
Your files will be physically placed inside a resources folder inside active WordPress theme. For example, let’s say that your profile picture (profile.jpg), is located inside a “images” folder. To insert your profile photo in a page you should do:
<img src=”http://mysite-myusername.simplifysites.com/wp/wp-content/themes/appcropolis/resources/images/profile.jpg”/>
The {{resources}} binder serves as a shortcut to access files inside the resources folder. For the above example you could do:
<img src=”{{resources}}/images/profile.jpg”/>
TODO:
/**
* TODO
*/