Tag: PHP
-
Use More Flexibility In WordPress Templates
Those who have wanted to create their Theme for WordPress quite flexible, and loves the modularization, had always to involve the path to the template. With WordPress 3.0, this will be different and it is possible to use a function, which makes it easy to load the template.
-
WordPress Developer Hint
With WordPress 3.0 debugging will be easier, whereas one constants gets eliminated and an already existing constant will do their work. For developers the following 3 constants are important and should exist in every wp-config.php of a development system. Please use it with precaution on a live system! Add define(‘WP_DEBUG’, true); to wp-config.php to enable…
-
Shortlinks with WordPress 3.0
There will be a new function in the coming 3.0 version, which will create a shortlink to a post. At default it will be in the header of your frontend.
-
First Impressions of Custom Post Type
One of the new very interesting things in WordPress 3.0 are individual post-types you can implement with little effort. Back then, you had to expand the database and write your own interface for it, now you just have to add a few lines of code – of course this is just the current state, which…