treehouse : what would you like to learn today?
Web Design Web Development iOS Development

Wordpress Tricks

  • Just wanted to strike up a discussion and see what cool Wordpress trick(s) (or lesser known features) you have come across in your exploration.

    One of my favorites is
    <? wp_oembed_get(); ?>

    This one piece of code will generate the embed code for many different services such as Vimeo, Youtube, Flickr, Hulu and more. Check out the list here.

    It has a whole list of arguments with it.

    <?php $embed_code = wp_oembed_get('
    array('width'=>400)); ?>

    It's a great little piece of lesser known Wordpress code that's actually been there since 2.9.0
  • WP-Snippets is a good site for stuff like that.
  • My favourite is this:

    function custom_login() {
    echo '<link rel="stylesheet" type="text/css" href="'.get_bloginfo('template_directory').'/custom-login.css" /<';
    }


    Goes in functions.php. Allows you to override the styles for the login page - rather than just changing the logo, and without the need for a plugin.
  • Good tip @Brightonmike. I'll have to check that one out