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.

  • Example How To Add Meta Boxes To Edit Area

    Additional fields, meta boxes, in the edit area of WordPress often are useful and easier for customers instead of using Custom Fields. A small Plugin will show you three options. Use it, make WordPress even better for your clients. Learn how easy it is to adjust the edit area in WordPress.

  • List Posts by Category In Navigation

    WordPress is primarily a blog platform. Not infrequently it is used as a CMS. But not just static pages play a role, but also posts, because they are giving more opportunities, having better performance and be published in feeds. Therefore, I prefer to use, in the context of WP as a CMS, posts more than…

  • 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…