deat
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: name anchor not working properlynevermind, i worked around it somehow.
Forum: Everything else WordPress
In reply to: Letting users choose their own password?Thanks for the criticism, but please…give me an alternate suggestion.
Edit: There’s no reason for you to say that someone else will get inside the blog. I’m the only person with any authority, and my password is very secure. There’s no logic in cracking a users account with how my blog is setup.
Forum: Fixing WordPress
In reply to: No admin page StylingHmm…that made me realize there was no actual wp-admin.css file. >_< D’oh! Thanks!
Forum: Fixing WordPress
In reply to: No admin page Stylingit was in a sub-directory. and where would I check my paths? in options > General? Because I have those changed, and the CSS for the main site is fine. It’s only the Admin and login page which is affected.
Forum: Fixing WordPress
In reply to: Excluding Category From Main Page?Thank you! That worked. ?? Sorry for the bother!
Forum: Fixing WordPress
In reply to: Excluding Category From Main Page?<!-- begin posts -->
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<dd>
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<ul class="newsDate">
<li><?php the_time('F jS, Y') ?> </li>
</ul>
<p><?php the_content('Read the rest of this entry »'); ?></p>
<div class="newsFooter">
<ul>
<li class="category"><?php the_category(', ') ?></li>
<li class="comments"><?php comments_popup_link('No Comments', '(1) Comment', '(%) Comments'); ?></li>
</ul>
</div>
</dd>
<?php //trackback_rdf(); //commented out for xhtml validation?>
<!-- end of posts -->That’s part of my index.php code. see how the loop is split into two? I tried putting it after both, and then in between it. Niether worked. Is there certain spacing i should do?
Thank you!
Forum: Fixing WordPress
In reply to: Excluding Category From Main Page?I know it goes into the index.php, but where in that file does the code go?
Forum: Plugins
In reply to: Joing then automatically post?Thank you very much! I will try that out.