mattread
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Next set of entriesHere’s the tag:
<?php posts_nav_link(); ?>
Here’s the page that tells you more about it:
http://wiki.wordpress.org/posts_nav_link
Here’s the best page to go to for all template tags:
http://wiki.wordpress.org/TemplateTagsForum: Fixing WordPress
In reply to: CHMOD on windows serverThe best way to do it is to switch it over to Linux!!
http://www.anonym.to/?http://www.novell.com/community/linux/order.phpForum: Themes and Templates
In reply to: Funny thing about the categoriesLook here on the Wiki:
http://wiki.wordpress.org/the_category
And for ALL the template tags you should go here and not the docs section of this site:
http://wiki.wordpress.org/TemplateTagsForum: Themes and Templates
In reply to: IncludeThat’s what I do on my page. I have a main tamplate (index.php) in my root dir and I call wp-blog-header.php like this
require('/blog/wp-blog-header.php');
If you always want your categories etc. to show on your index.php, like in a side navbar, then put<? require('./wp-blog-header.php'); ?>in there. Otherwise it doesn’t matter.Forum: Themes and Templates
In reply to: I want to change the php templates!!!!FileZilla – http://filezilla.sourceforge.net/
It’s the best FTP Client for windows. Althought WsFTP is pretty good.Forum: Fixing WordPress
In reply to: Trackback in WP 1.2I have this problem too. I can trackback other sites, but can’t trackback my site. Just for your info, this bug has been reported:
http://mosquito.wordpress.org/bug_view_page.php?bug_id=0000070Forum: Fixing WordPress
In reply to: need help with placing contentHave a look at this article on alistapart.com. It shows you how to do two and three column layouts.
http://alistapart.com/articles/negativemargins/Forum: Themes and Templates
In reply to: 100% Repeating Background?gregor, if you put the repeating background in the “rap” div and leave in the “clearer” div, everything will be fine.
Forum: Fixing WordPress
In reply to: Extra (and unwanted ) < tags in posts…Do you have “WordPress should correct invalidly nested XHTML automatically” checked? If so try unchecking it. It gave me a lot of problems similar to that.
Forum: Fixing WordPress
In reply to: any proper way ?/wp-admin/quicktags.js
Forum: Themes and Templates
In reply to: 100% Repeating Background?Just before the “rap” closing div try putting another empty div with id=”clearer” and define it as follows:
#clearer {
height: 0;
clear: both;
}
And put the repeating background in the “rap” div.Forum: Plugins
In reply to: Markdown troubles…Forum: Fixing WordPress
In reply to: no embed?Because, if the sound that the embed tag plays works, then all the stuff within the noembed tag is not displayed. So you could put something like:
<noembed>You do not have the proper plugin to play my sound file</noembed>
Then if the person viewing your site doesn’t have the plugin, they will see that message, but if they have the plugin to play the sound then only the sound player will show and not that message. You had forgoten to close the noembed tag, so it did not display anything after that (your menu).Forum: Fixing WordPress
In reply to: Standalone <hr /> tags?If you use the “MarkDown” plugin it won’t do that.
Forum: Fixing WordPress
In reply to: no embed?It’s because you have everything else in the
<noembed>tag. If the browser doesn’t support<embed>then it displays the stuff in the<noembed>tag. So just close the<noembed>tag like this:<noembed></noembed>