Jeanette
Forum Replies Created
-
Forum: Plugins
In reply to: sticky/adhesive pluginYes, I’ve been using that one but it causes my posts to go down abuot an inch lower on the page. It has a warning to change the code but when I did following the directions it shut down my site. Was looking for a different one.
ThanksForum: Installing WordPress
In reply to: Adding photos to blogs. Is there a how to guide?I have trouble uploading pics to the site from the upload page too. I can’t use the files when I put them in. My solution was to go to http://www.photobucket.com you upload your pictures, it gives you 3 lines of text. You copy the second block of text and paste it into your post. Works every time. Just be sure your photos are the right size or they will spread all over your sidebar. I usually set mine at 475 mega pixels horizontal and the vertical sizes automatically in my photo program.
Forum: Fixing WordPress
In reply to: Add Date only to postsMuch better. You’re a genius! Thanks so much! π
Forum: Fixing WordPress
In reply to: Add Date only to postsThanks, I did what you suggested and got the date in there. Is there a tag I can use to make it a little smaller. Here’s my url http://ohhowilovejesus.com
Thanks
Forum: Fixing WordPress
In reply to: Add Date only to postsI used this code and nothing happened. Am I missing some code? I’d like it to show Month and day not necessarily the year. Thanks.
Date posted: <?php the_date(); ?>
Forum: Fixing WordPress
In reply to: Post name of author and time of post on published postGot it! Thanks a bunch. π
Forum: Fixing WordPress
In reply to: Post name of author and time of post on published postI’ve pasted the codes and the time is now showing up but not the author. Here’s the way it reads in my index.php file (appropriate line only) π
<!– by <?php the_author() ?> ) –></small>
Any clues as to what I am doing wrong? I just added the code you indicated without taking out anything in front of or behind it. Is that my problem?
Forum: Fixing WordPress
In reply to: Post name of author and time of post on published postI do see what you’re referencing now that I can compare side by side, but do I fill in the blanks with something and if so which blanks and what type of information do I put in them?
Sorry for being such a dumbbell
ThanksForum: Fixing WordPress
In reply to: Post name of author and time of post on published postThis is my entire index.php entry. I don’t see what you are referencing. Do I need to add something and if so does it need to be added for each poster in order to post the poster’s name on her posts?
<?php get_header(); ?>
<div id=”content” class=”narrowcolumn”>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class=”post”>
<h2 id=”post-<?php the_ID(); ?>”>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h2>
<small><?php the_time(‘F jS, Y’) ?> <!– by <?php the_author() ?> –></small><div class=”entry”>
<?php the_content(‘Read the rest of this entry »’); ?>
</div><p class=”postmetadata”>Posted in <?php the_category(‘, ‘) ?> | <?php edit_post_link(‘Edit’,”,’|‘); ?> <?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?>
<!–
<?php trackback_rdf(); ?>
–>
</div><?php endwhile; ?>
<div class=”navigation”>
<div class=”alignleft”><?php posts_nav_link(”,”,’« Previous Entries’) ?></div>
<div class=”alignright”><?php posts_nav_link(”,’Next Entries »’,”) ?></div>
</div><?php else : ?>
<h2 class=”center”>Not Found</h2>
<p class=”center”><?php _e(“Sorry, but you are looking for something that isn’t here.”); ?>
<?php include (TEMPLATEPATH . “/searchform.php”); ?><?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Post name of author and time of post on published postUsing the Kubrick theme. Let me read what you have posted and see if that’s what I need.
ThanksForum: Fixing WordPress
In reply to: Post name of author and time of post on published postOK, so I’m thick. I don’t know what it’s talking about the Loop. I am using WP 1.5, I can see on the post admin site the post number, author and time. How do I transfer the author and time to the actual post so the readers know who is posting the post? If I need a plugin please tell me. If I need code please tell me what code and where to put it so it does what I want it to do.
ThanksForum: Fixing WordPress
In reply to: How to Post Author’s Name and Time of PostOn the site. At the end of the post I would like to show the author’s name and the time and date of the post.
Thanks