Category Archives: Wordpress
WordPress 3.1.1 released
WordPress 3.1.1 is now available. This maintenance and security release fixes almost thirty issues in 3.1, including: Some security hardening to media uploads Performance improvements Fixes for IIS6 support Fixes for taxonomy and PATHINFO (/index.php/) permalinks Fixes for various query … Continue reading
Display number of facebook fans in wordpress template
Ever want to display your facebook fans in a WordPress template without a plugin? I found a very simple code to do that. <?php $page_id = “YOUR PAGE-ID”; $xml = @simplexml_load_file(“http://api.facebook.com/restserver.php?method=facebook.fql.query&query=SELECT%20fan_count%20FROM%20page%20WHERE%20page_id=”.$page_id.””) or die (“a lot”); $fans = $xml->page->fan_count; echo $fans; … Continue reading
3 plugins I always install: WordPress
Every time I install WordPress I have a few select plugins that make my life a little easier. All in One SEO Pack A great SEO plugin with tons of features. Get it here. Google XML Sitemaps This automatically creates … Continue reading
Organize WordPress Pages Easily
Do you use WordPress as a CMS and have many pages to deal with? It’s a headache sometimes. I found this great plugin that will help you organize your pages into a tree view structure simple and quickly. The plugin … Continue reading
Add custom field to a WordPress Page
I love WordPress. It makes my life as a web developer so much easier. It’s easy to add a custom field to a page. If you want to add a custom field to your WordPress template you can use the … Continue reading
WordPress 3.1 is out!
Here is the full release changelog: (It’s HUGE!) Internal Linking – click a button for an internal link and it allows you to search for a post or browse a list of existing content and select it for inclusion. … Continue reading
WordPress issue : “$ is not a function”
Don’t freak out, it’s easy to fix. When trying to add a jQuery accordion script to a wordpress template I came across this firebug error. “$ is not a function”. Simple enough to fix, just convert all the “$’s” to “jQuery” … Continue reading
Responsive Images using css
After much thought and too much time working with other peoples wordpress themes I’ve decided to create a new design for my site using Responsive design and Responsive images. For more info about responsive images check this article out. It … Continue reading
Are you sure you want to do this? Please try again. WordPress 3.0 custom post type error.
Sorry for the longest title in the history of my blog, I just want other developers to find my site and find the info they need to. I found out that wordpress custom post types can throw back an error … Continue reading
Custom post types with WordPress 3.0
I’ve just started developing a WordPress 3 site that uses about 15 different content types. When the client needs to be able to edit 15 different areas of the site and not destroy the layout, this is the way to … Continue reading