bubsatschool
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Posts not visibleI’m also a “general” user 😉 I’m relatively new to all this PHP programming stuff. Check out the wp_post table and make sure that there are actual posts in there, rather than the ID just incrementing and claiming that you have posts.
Forum: Themes and Templates
In reply to: Blockquote and validation problemAre the
<p>‘s AROUND the<blockquote>‘s or INSIDE the<blockquote>‘s?ie:
<p><blockquote>text</blockquote></p>OR
<blockquote><p>text</p></blockquote>Forum: Installing WordPress
In reply to: Posts not visibleI’m really not the one to be answering this, but I figured I’d try to help you with what I could. It seems as though one of the tables isn’t getting installed properly. Double-check your wp-config file once more, since this is the only thing that you’ve edited.
btw – do you use phpmyadmin by any chance?
Forum: Installing WordPress
In reply to: Posts not visibleHave you edited the index.php in any way? Seems to me like you’re missing some template tags, I could be wrong though.
Forum: Themes and Templates
In reply to: Blockquote and validation problemNuclear — what is the purpose of the added
<p>‘s after the<blockquote>‘s? I’m just curious.Forum: Fixing WordPress
In reply to: Unwanted <br /> before and after each entry!Ok, I installed both plugins… and nothing happened. Can anyone give me an explanation of what purpose the above plugins serve?
Also, can anyone tell me the purpose of the rogue
<br>‘s?Forum: Themes and Templates
In reply to: Blockquote and validation problemHmm, I’ve tried to understand why WP automatically adds the
<p></p>when you use<blockquote>. Still, I don’t understand why this would cause a validation error.According to your validation results, you have some
<blockquote>s that aren’t properly closed.Your layout is gorgeous, btw 🙂
Forum: Fixing WordPress
In reply to: disable html in write/post?Are you talking about inside the comments?
Open up /wp-includes/template-functions-comment.php
Find:
function comment_author_link()Replace this line:
echo "<a href='$url' rel='external'>$author</a>";With this line:
echo "<a href='$url' rel='external' target='_blank'>$author</a>";That should do the trick 😉