WordPress Menu Doesn’t Save

October 20th, 2011

0

If you have a large wordpress menu, chances are, you will have problems saving it. If you are experiencing this problem, here’s the solution below. 1. From your wordpress installation folder, look for wp-config.php 2. Open file in your favorite editor and add the following lines: define(‘WP_MEMORY_LIMIT’, ’64M’); set_time_limit (300);

Read more...

WordPress Plugin – Sidebar Widget Recent Posts with Excerpt

April 29th, 2011

0

If you are looking for a wordpress sidebar widget plugin that displays the recent posts with excerpt, this plugin by Justin Tadlock is right for you. Aside from having the excerpt, there are other options and parameters available on how to display the posts on the sidebar. Here’s the link to the Query Posts Widget: [...]

Read more...

Portfolio Update

September 20th, 2010

0

Due to the overwhelming demand of work, we’ve made ourselves busy forgetting to update our portfolio section. We recently decided to pause for an hour and give a little time for our site. Anyway, you may be interested on looking on some websites that we recently did.. Moreover, i would want to give extra credit [...]

Read more...

WordPress Show Recent Post from a Specific Category

April 29th, 2010

0

$recent = new WP_Query(“cat=1&showposts=10″); while($recent->have_posts()) : $recent->the_post(); the_content(); endwhile; just sharing a script to show recent posts from a certain category. You may use this code if you want to put a recent post content in sidebar or in footer.

Read more...

Fast Coding for HTML + CSS

January 21st, 2010

0

I want to share a screencast which I recently stumbled upon. This is for programmers who want to speed up coding. I’m not sure if you’ve heard about zen-coding but i know you will definitely be interested in learning it once you see the screencast. Thanks to net.tutsplus.com for putting this up. Here’s the link [...]

Read more...