Trying to remove the date from the sticky post… Total nightmare
-
I found a couple of solutions but nothing seems to work out. Most of them ask me to change a code but the code they give me to change does not exist in my php index.
A couple of times I messed up my profile, making it not visible full of errors so I don’t wanna risk other solutions.
Here is mine
What do I have to change?
<?php get_header(); ?>
<div id=”content”><?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<div id=”title_back”>
<div class=”post-date”><span class=”post-month”><?php the_time(‘M’) ?></span> <span class=”post-day”><?php the_time(‘d’) ?></span></div>
<div class=”post-title”><h2>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h2>
<span class=”post_arr”> Posted by: <?php the_author() ?> in <?php the_category(‘, ‘) ?></span> <span class=”post_arr2″><?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?></span>
</div>
</div>
<div class=”entry”>
<?php the_content(‘Read the rest of this entry »’); ?>
</div>
</div>
<!–/post –><?php endwhile; ?>
<div class=”navigation”>
<span class=”previous-entries”><?php next_posts_link(‘Previous Entries’) ?></span> <span class=”next-entries”><?php previous_posts_link(‘Next Entries’) ?></span>
</div><?php else : ?>
<h2>Not Found</h2>
<p>Sorry, but you are looking for something that isn’t here.</p><?php endif; ?>
</div><!–/content –>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Is it possible to find a plug in instead because it really scares me working with php.
Sorry for that huge code…
- The topic ‘Trying to remove the date from the sticky post… Total nightmare’ is closed to new replies.