By Austin on October 15, 2009
Social networks are everywhere. I am sure you’re on facebook. Well why not at a facebook share script to your site?
Posted in Tips & Tricks | Tagged How to, shortcodes
By Austin on August 10, 2009
Announcing my first “released” plugin. Very simple, as I’ve even gone over it in the last few published posts.
Use WordPress to print a RSS feed for Eventbrite attendees
Turn your RSS feed into a shortcode
But I decided to release it in plugin form!
Download the plugin from WordPress.com!
Posted in Plugins | Tagged Eventbrite, Plugins, shortcodes
By Austin on May 12, 2009
Are you looking for a better way to hide content to non-members? You may want to check this out: Using shortcodes to show members-only content ¶
Posted in Cult | Tagged Justin Tadlock, shortcodes
By Austin on April 15, 2009
This is a simple one.
/**
* Your Blog title
*
*/
function my_blog_title() {
$blogname = get_bloginfo(‘name’);
return ‘<span class=”blog-title”>’ . $blogname . ‘</span>’;
}
add_shortcode(‘blog-title’, ‘my_blog_title’);
Just add this to your functions.php file and then add [blog-title] in any post or page and it will return your Blog Title.
Posted in Tips & Tricks | Tagged functions, shortcodes, Tips & Tricks
Recent Comments