So I've been
messing around with WordPress since I do like it and I found this amazing tutorial on how to build a template at
WPDesigner. While going through his tutorial, I decided that there's no reason why I have to have ALL of the blog junk...Alls I need is those main posting code.
PHP Code:
<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
<h2><?php the_title(); ?></a></h2>
<?php the_content();?>
<?php endwhile; ?>
<?php endif; ?>
I'll nix the title code half the time I'm sure because of the unique fonts I tend to use...But other then that, I'm seeing what I want to see as far as the end product.
Now, in regards to the admin panel, I still see that as being problematic because I tend to attract clients that can't even send an email.

Has anyone ever attempted to lock or comment out sections of the admin? I'm talking "Blogroll," "Comments," "Presentation" and "Plugins."
Thoughts/Comments would be appreciated.