Tag: functions
-
How to add customizable header images and customizable backgrounds to your WordPress theme
One of the coolest new features of WordPress 3.0 is the ability to customize the site header image and background color or image. The custom header actually goes one step further and lets you set a unique header for each of your pages. This means that you can create unique headers that tie into the… (read…
-
my favorite new WordPress trick
this little functions.php hack makes me all giddy… use this to rebrand your WordPress back-end with your own logo: //hook the administrative header output add_action(‘admin_head’, ‘my_custom_logo’); function my_custom_logo() { echo ‘ ‘; } and here’s what it would look like in action: by default, the WP logo is 32px square. so what do you do…
-
wordpress shortcodes kick ass (or: shortcodes, an affiliate marketer’s best friend)
this one will make the internet marketing peeps smile… let’s say you have some kind of text or phrase that you use a lot. it could be anything, but let’s — for the sake of argument, and for showing the full power of this code — assume that the text or phrase includes a link.…