Posts Tagged:Hacks

Fetch and display RSS feeds
Read More... | Comments Off

Do you know that WordPress have a built-in RSS reader? Today, I’m glad to show you an updated version of this very popular hack. Simply paste the following code where you want the feed to be displayed. Don’t forget to define feed url at line 4. <?php if(function_exists(‘fetch_feed’)) { include_once(ABSPATH.WPINC.’/feed.php’); $feed = fetch_feed(‘http://feeds.feedburner.com/cosmosblog’); $limit = [...]

10 WordPress hacks to make more money online

WordPress is a very powerful blogging engine, which serve content to billions of readers on a daily basis. But not only: WordPress can be used in a wide variety of ways: Photoblog, online magazine, classified site… And with all that power, WordPress can also help you to make more money online than a simple site [...]

12 Useful WordPress Hacks
Read More... | Comments Off

WordPress is not only a great blogging tool but a great content management platform that provides a lot of ways to let you hack into into its functionality to make it do whatever you want. Here are 12 lesser known wordpress hacks/ tricks that you might find useful for your next WordPress related project. Most [...]

Top 10 WordPress Hacks

How to: Show parent page title regardless of what subpage you are on Let’s start with a nice code for those using WordPress as a CMS: Just paste it anywhere on your theme files and it will display the parent page title. <?php if($post->post_parent) { $parent_title = get_the_title($post->post_parent); echo $parent_title; } else { wp_title(”); } [...]

30+ Helpful WordPress Tricks And Hacks

As an experienced WordPress user, we keep ourselves updated with the development of the core, plugin releases and useful WordPress tips and tricks shared by developers and enthusiasts. In today’s post, we’d like to share with you updated WordPress tips and tricks and plugins that are interesting and useful. Without further ado, here’s another 30+ [...]

30+ Most Wanted WordPress Tips, Tricks and Hacks

Apple Flashy Accordion Sidebar Use the Accordion plugin in jQuery UI to create an Apple-alike WordPress sidebar. Adding Tabs to Sidebar Creating tabs on WordPress sidebar with Yahoo! UI Library Sidebar With Dynamic Contents Every blog visitor has different habits, but many tend to ignore sidebars because they are always the same. Mixing things up [...]