How to save an image from a Facebook post when right click save will not work.

It is annoying when you wish to save an image from a Facebook post and this will not work. But this is actually very easy using Firefox. Just right click on the image and select Inspect element with Firebug. Then drill down through the code until the URL to the image is found, just select … Read more

How to display excerpts in WordPress posts.

To display post excerpts in WordPress, put this code in the index.php <?php if(is_single() || is_page()) { ?> <?php the_content(__('(more…)’)); ?> <?php } else { ?> <?php the_excerpt(__('(more…)’)); ?> <? } ?><?php if(is_single() || is_page()) { ?> <?php the_content(__(‘(more…)’)); ?> <?php } else { ?> <?php the_excerpt(__(‘(more…)’)); ?> <? } ?> This will display full … Read more