How to Display Announcements in a WordPress Blog

Do you want to share an announcement or message with your website visitors? WordPress does not provide any out-of-the-box solution to display announcements. You can however write a blog post and make it stick to the top. But there are even better ways to easily share announcements. You can ...

# Articles 1 Comment
Add floating flyout sidebar to WordPress

How to Add a Floating Flyout Sidebar in WordPress

Do you have a website without a sidebar or otherwise called a one-column theme? You may want to add widgets to your website but you prefer a one-column layout. The solution to this problem would be to create a floating Flyout sidebar and add widgets to it. There are multiple useful ...

# Articles No comments
Create Shortcode for Google maps embed code in WordPress

How to Create Shortcode for Google Maps Embed Code

Do you want to display Google maps on your website? To display Google maps we need an embed code. Google maps provide multiple options to get this embed code. Learn more about the different ways to get this embed code. Now with this embed code, you can simply paste ...

# Articles No comments
Alternatives to RSS feed aggregators for WordPress

Alternatives to RSS feed Aggregators in WordPress

Do you want to have a website and want to display interesting articles from the websites you like using RSS feeds?  There are two ways to get this done. One is Content aggregation and the other is using an RSS Reader to display the live RSS feed. What is ...

# Articles No comments
best method to insert custom code in WordPress

Best methods to Insert Custom PHP code in WordPress?

Do you want to add custom PHP code to your WordPress website? When you read articles/guides related to WordPress, oftentimes you can see they suggest you add PHP code to tweak an existing feature of WordPress or add a new feature/option. Apart from articles, you may also need to ...

# Articles No comments

Use Firebug in Any Browser

Firebug is on of the famous extension for inspecting web pages in firefox. Now it is possible to use firebug in any browser using Firebug lite. Firebug lite is the small version of Firebug with limited features and usage, but has the full capability. In order to do this, just save a ...

# Articles No comments

Accessing newly created elements using .live() function in jQuery

The .click() and similar functions like .hover() allows to access the elements which are already present. But elements created using .append(), .after(), .before() etc are newly inserted into the page. These newly created elements cannot be accessed using the functions .click(), .hover() as they target only the already present ...

# Articles No comments

Debugging PHP

Some useful techniques in debugging PHP are mentioned below Article: http://dev.piwik.org/trac/wiki/HowToSetupDevelopmentEnvironmentWindows Firefox addon – Firephp PHP Extension – Xdebug Using var_dump() phpEd Zend Studio (5.5) with Zend Platform Using, print_r and echo

# Articles No comments