mattread
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: including index.phpGreatBug, that sounds like a problem with the query string. I would try including the wp-config.php, then below that include your actual template file, index.php from your theme, instead of just the WP index.php.
Forum: Plugins
In reply to: More Smilies PluginUpdate:
Just released Version 1.1, which cleans up the code and is more compatible with other plugins. Also added 3 new packages, including Orin’s π
Forum: Fixing WordPress
In reply to: Excerpt sometimes, not all the time.use the
<!--more-->tag.put that tag where you want the “more” link to be displayed, and on the front page it will display only the text up to there.
Forum: Fixing WordPress
In reply to: Xhtml posting codes <code> <p>paragraph</p> </code>Forum: Plugins
In reply to: wp list posts ?<?php wp_get_archives('type=postbypost&limit=10'); ?>that will give you a list of post titles, with links.
Forum: Everything else WordPress
In reply to: Printable list of all template tags?There is also the movalog wp tabs:
Forum: Plugins
In reply to: Custom Query String PluginVersion 1.2 is now available. It adds many new features, including more query types to choose from as well as the ability to show a certain number posts or days.
See my post for all information and download links.
Forum: Plugins
In reply to: narchives.php shows draft posts…?I’m also having this problem. But don’t have a solution. π But it’s prolly just a MySQL call that doesn’t check for the post status.
Forum: Themes and Templates
In reply to: Custom Fonts in CSSWell, unfortunatly you can’t really do that. You can use a font face “at rule” in CSS, but browser support is very weak, if any at all. IE is the only one that has ok support. But here is how you would do it:
@font-face {
font-family: somerandomfontname;
src: url(somefont.eot);
}
However you need to use an OpenType font, not True Type font. Microsoft’s WEFT software can convert TT fonts though.
The best, and really only way to do this, is to use images. πForum: Fixing WordPress
In reply to: Extra big spaces in postsit is because you have
text-align: justify;Forum: Plugins
In reply to: Nicer Archives Limiting Displayare you including wp-config.php instead of wp-blog-header.php?
Forum: Plugins
In reply to: Admin Bar Pluginlbessant, thanks I updated the link.
Forum: Themes and Templates
In reply to: Link Imagehttp://wiki.wordpress.org/get_links
make sure the ‘show_images’ is set to true. However from what I understand the image will replace the link text. So I think you’d be better off using CSS to add the bullet.Forum: Fixing WordPress
In reply to: changing the prefix in my databasemoxie, not without changing the prefix on all the tables in the database first. You could right a script to do it.
Forum: Requests and Feedback
In reply to: Post Passwords Don’t Work…gahazzah, is your index.php in a different folder than your WP folder?
If so you’ll need to modify the wp-pass.php file that sets the cookie as follows:
setcookie(‘wp-postpass_’.$cookiehash, $_POST[‘post_password’], time()+60*60*24*30, “/path/”);
notice the extra “/path/”. this will be the path to your index.php file. so if your index.php is in your root dir it would be “/”. If it was in a dir named blog, it would be “/blog/”. and so on…
Again this is assuming your index.php is in a different directory than your WP folder (wp-pass.php).