Posts tagged as:

posts

A Rebuilt CRM

by Rich on April 4, 2010

in CRM

This will probably end up with a series of posts or worse, I will edit this post as I add new thoughts! Anyway, I believe that the crm needs to be rebuilt for a number of reasons. Firstly, it actually has very limited connection with WordPress. Secondly, WordPress already has a user level built in [...]

{ 9 comments }

How to show single post content in sidebar

by Rich on October 25, 2009

in Wordpress

Find the post you want and the id of the post and then add this code to your sidebar. <?php query_posts(‘p=1′); if(have_posts()) : the_post(); ?> <?php the_content(); ?> <?php endif; ?> Couldn’t be simpler!

{ 0 comments }