>
Download This Plugin | |
Download Elegant Themes | |
Name | insert |
Version | 0.1.0 |
Author | Ryan Van Etten |
Rating | 0 |
Last updated | 2014-01-30 07:43:00 |
Downloads |
222
|
Download Plugins Speed Test plugin for Wordpress |
Home page PageSpeed score has been degraded by 0%, while Post page PageSpeed score has been degraded by 0%
insert plugin added 1 bytes of resources to the Home page and 7 bytes of resources to the sample Post page.
insert plugin added 0 new host(s) to the Home page and 0 new host(s) to the sample Post page.
Great! insert plugin ads no tables to your Wordpress blog database.Use the [insert]
shortcode inside posts or anywhere else that processes shortcodes.
[insert]
shortcode attributesWP_Query
via get_posts()
locate_template()
All attributes are optional and can be used in combination to yield powerful abilities.
Possibilities with [insert]
are endless. Practical uses include:
[insert template="branding.php"]<pre><code></code></pre>
[insert action="dostuff"]<pre><code></code></pre>
[insert data="field=slug&value=example&tax=category" action="dostuff"]<pre><code></code></pre>
The action receives data as an array.
add_action('dostuff', 'print_r');<pre><code></code></pre>
[insert query="name=about&post_type=page" template="entry.php"]<pre><code></code></pre>
This sets up the query and triggers the action.
[insert query="name=about&post_type=page" action="dostuff"]<pre><code></code></pre>
WP template tags are available inside the action.
add_action('dostuff', 'the_title');<pre><code></code></pre>