keebz
Forum Replies Created
-
Forum: Themes and Templates
In reply to: What theme is this?I have looked for one on that page actually and couldn’t find one similar. I was hoping someone on here might have seen one somewhere before and could point me in the right direction. The smart reply wasn’t really necessary. Thanks anyway for your help.
Forum: Themes and Templates
In reply to: What theme is this?Oh… 🙁
Is there any theme similar to that for wordpress?
Forum: Everything else WordPress
In reply to: How do I turn off All posting replies and comments.Sorry for the double post. But just for clarity, when I say php file, I’m talking about the file I have to edit to remove “Posted in Uncategorized | Edit | Comments Off” as I am having the same problems as deonya.
Forum: Fixing WordPress
In reply to: How do I hide page titles?Thank you so much! It worked!
Forum: Everything else WordPress
In reply to: How do I turn off All posting replies and comments.What php file is that code in?
Also, can someone tell me which line of code to alter?
Forum: Fixing WordPress
In reply to: How do I hide page titles?I’m sorry. I can’t find the code you’re referring to…
Here is what my page.php looks like:
<?php get_header(); ?>
<div id=”content” class=”narrowcolumn”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h2><?php the_title(); ?></h2>
<div class=”entry”>
<?php the_content(‘<p class=”serif”>Read the rest of this page »</p>’); ?><?php wp_link_pages(array(‘before’ => ‘<p>Pages: ‘, ‘after’ => ‘</p>’, ‘next_or_number’ => ‘number’)); ?>
</div>
</div>
<?php endwhile; endif; ?>
<?php edit_post_link(‘Edit this entry.’, ‘<p>’, ‘</p>’); ?>
</div><?php get_sidebar(); ?>
<?php get_footer(); ?>
Could you specify exactly what I have to change?
Thanks.