Categories: Tips & Tricks

Add a shortcode

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. :)

Web Master

Hi, I am Miguel, I bought this site in 2009. So I now run or manage the site. Please visit my new website or follow me on twitter @W3i.

Recent Posts

Search Unleased: A custom WordPress plugin

Most all WordPress theme's use a a simple search form to search your site. But…

4 hours ago

Limit the characters that display on the_title

Ever wanted to display the title of a post somewhere but limit the amount of…

8 hours ago

MichaelCHall.org

20 hours ago

The launch of WordPress.tv

Hey, in case you are unaware, WordPress has launched a new site called WordPress.tv. Check…

1 day ago

10 Steps to Evaluating and Measuring Your Marketing Strategy

When you are trying to market a product, the product or service is only as…

2 days ago