Ultimate Web Tips

your Wordpress, jQuery, PHP, MySQL, Linux and CSS guide to a successful website
Read more:
Archive for the ‘Wordpress’ Category

A 404 Not Found is generated when a user trying to access a page that doesn’t exists or if a user finds an old page that still is indexed on search engines (broken or dead link). So instead of displaying a 404 page or message you can redirect with a 301 moved permanently to homepage.

If you are using the hook ‘content_save_pre’ and want to save custom values from an XMLRPC call, you have to do a cleaver little workaround. The problem is that the ID is generated when the call is executed which is after this hook.

Custom post type is a great way to customize your WordPress and adding new taxonomies makes it even more powerful. All functionality comes with WordPress core but it can be difficult to specific posts on a custom taxonomy. The key in this is the new tax_query argument.

Thickbox is as jQuery plugin that WordPress use as it’s main popup window or modal view. It’s already built-in in WordPress so why not use that in front end. No need to download or import any extra files.

WordPress has had the ability since a long time ago to add custom fields to posts. Also called as meta-data. It’s also possible to add these values to your table list and make them sortable.

“WP Easy Backup” is a WordPress plugin that will create a database dump and zip all your media, theme and plugin files.

If you’ve registered a custom taxonomy it’s a bit different to get data from than how you’d normally do for categories.

November 8th, 2011

Remove slug from custom post type

60 Comments, Wordpress, by Joakim Ling.

In WordPress 2.9 custom post type was introduced, that opened a new world for many WordPress developers. I’ve come across a painful issue when it comes to removing the slug and not destroying the rewrite rules for other post types. This only concerns those who are using %postname% as permalink structure and want to add a custom post type so that the urls for them are in the same way as normal posts and pages: http://siteurl/%custom_post_type_title%/.

November 3rd, 2011

Action, filter and hooks in WordPress

1 Comment, Wordpress, by Joakim Ling.

In WordPress almost all customization are built on hooks. Plugins use them to add scripts and stylesheets to the header and themes use them to add flexibility. Sounds great and it is, but it will take some time to get your head wrapped around it. Hope this helps a bit.

I was confused for a good hour with this problem, scratching my head. My “Page template” drop down had disappeared. Before start digging to deep in WordPress I made sure the files were still in my theme folder, checked that head comments that define a template not gone missing or had been messed up, even checked file permissions so that the files are readable and that the theme is still active, still no drop down.