You are now in wordpress themes

Output which theme template file a post/page is using in the header of WordPress

This is a tip to help developers when creating or editing a WordPress template. This is a dead simple code and is especially useful for big templates (like a magazine style or e-commerce). It will show which template are being currently used by WordPress. add_action(‘wp_head’, ‘show_template’); function show_template() { global $template; print_r($template); }

Veja Mais

Modify the Login Logo & Image URL on your WordPress Login Form

Ever wondered how to change the logo of your WordPress Login Form in order to make it more customized? This is something especially useful when you’re selling the site to a customer. Here’s how to do it. The code will allow you to easily modify the WordPress Login page Logo as well as the href [...]

Veja Mais

How To Enable Hidden Admin Feature displaying ALL WordPress Settings

Ever wondered how to enable all WordPress Site configuration on your admin interface? This may be useful mostly when you want to avoid have to access the database of your blog just to change some minor configuration. In order to make it work just paste the code bellow in your functions.php file // CUSTOM ADMIN [...]

Veja Mais

WordPress 3.4 soon to be released

WordPress 3.4 version is planned to be released soon, its currently in the Beta 2 stage. I think the team working on WordPress must be getting really big since they are updating the CMS in a really fast pace lately. This time we aren’t going to see many changes, looks like the work on the [...]

Veja Mais

How to Create a Plugin for WordPress

There are two ways of creating a wordpress plugin, the correct way and the common way. The common way is to just throw functions in the main PHP file that goes in the plugin folder and hope that everything works just fine in the millions of different types of wordpress installations. The correct way, is [...]

Veja Mais

How to change your WordPress Domain

This is a problem that many users face sometimes, moving wordpress domains is not an easy task because you have many things to consider, if you just move your files and don’t change the correct configurations in the database you will break everything on your site, another common problem is that after you migrate to [...]

Veja Mais

How To Disable Comments on Wordpres

This is a very common question i have been asked lately. Specially because of the Seo Facebook Comments Plugin. Which many people don’t know is that you can easily disable a comment for a specific post or page by changing a configuration on the edit page of this post or page. All you have to [...]

Veja Mais

How to Pass WordPress Database Information to the Front-End for Javascript/Ajax

Thats one of the nicest things I have recently come across while playing around with wordpress, i was currently trying to pass information from the database, dynamically, to the front end to use this information in ajax requests and dynamic validation with javascript. The key, in this case my friends, is to use the wp_localize_script() [...]

Veja Mais

How to Enable the WordPress Menu Built-In

WordPress implemented a feature for some versions now, the register_nav_menu function, with this method you can create as many menus as you want and handle through the admin panel, which, by the way, it’s a great feature and that was needed for quite a long time. To use this function is very simple, open your [...]

Veja Mais

How to Enable Different Sizes of Post Thumbnails on your WordPress Blog

After version 2.9, wordpress have now a built in function that allows to easily embed thumbnail images into blog posts. I think this feature is very well known nowdays, however there are some other features about that function that not many people know about, that you can, for instance, create many different sizes of images [...]

Veja Mais

Soon: Plulz Exclusive Themes

One of the reasons we haven’t released any Theme for WordPress is that we’re looking into ways that would make really good ones with a really good code. By good code we mean code that have very good performance, easy to maintain and extensible, something we already do with the plugins. So far we have [...]

Veja Mais

Read Next