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
One of my favorites is
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.
array('width'=>400)); ?>
It's a great little piece of lesser known Wordpress code that's actually been there since 2.9.0
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.