Custom Login 2.0

Santa Monica Senior WordPress Developer
Santa Monica Senior WordPress Developer
This has been bothering me for some time now, and I saw Ryan Imel tweet something while I was out a few days back. So I favored it and finally got to download his plugin. After downloading plugin I noticed…
Yesterday I had a friend write me on Twitter asking about remove_mata_box. He was having issues getting the function to fire properly (or at at for that matter). I was out last night and just got a chance to open…
Add this to your child theme that is running Twenty Ten: function my_twenty_ten_height() { return ‘328’; // change the number to what you desire, default is ‘198’. } add_filter( ‘twentyten_header_image_height’, ‘my_twenty_ten_height’ );
I’ve actually been asked this a few times, and have seen others do it a few different ways. Anyway, here is my method: /* Flush rewrite rules for custom post types. */ add_action( ‘load-themes.php’, ‘frosty_flush_rewrite_rules’ ); /* Flush your rewrite…
I’m building an auto-theme updater for self hosted (non repository) based WordPress themes. I’ve built most of my code off Clark’s PHP script. I’ve made major modification and would love to share them once I’m 100% done, but first… I’m…