mattread
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: “php include” in a post ??Run PHP plugin should do the trick for you.
Forum: Themes and Templates
In reply to: no title? multiple dates? no trackback info?for #3, if you use
<? the_time() ?>instead of<?php the_date(); ?>it will show the date for EVERY post, even if it’s on the same day.
for #1, I guess I should read more carefully, I was talking about something else πForum: Themes and Templates
In reply to: no title? multiple dates? no trackback info?1. remove
<? the_title() ?>from index.php and add<?php single_post_title(); ?>to the title tag in the head of your index.php.
2. use <? the_time() ?> with the approprite date settings. http://www.php.net/date
3. that line is located in wp-comments.php. You can remove it but people won’t know the url to trackback your post. OR just disable trackbacks in Options -> Discussion — Allow link notifications from other Weblogs (pingbacks and trackbacks.)
4. The individual entries are displayed with index.php and wp-comments.php is included in it, only when viewing a single post.Forum: Plugins
In reply to: Markdown href bugAre you putting a space between the
httpand the://, because there shouldn’t be a space. Like this:<http://mappa.mundi.net>Forum: Fixing WordPress
In reply to: changing the siteurl messes up the WP blogTry this script:
http://codex.wordpress.org/User:Matt/recover.phpForum: Plugins
In reply to: PHP setcookieWhat about this:
setcookie ('sitestyle', $set, time()+31536000, '/T2/', '.tamba2.org.uk', '0');Forum: Requests and Feedback
In reply to: aristotle.multipattern.comMaybe you’ve been hacked, by aristotle π
Forum: Installing WordPress
In reply to: I dont have plug in folderWhat Version of WordPress do you have? You will need WP 1.2 or greater for plugins
Forum: Plugins
In reply to: wp-mood-quote (random quotes based on mood)To get them to show on my site I have to put:
<? echo get_mood_quote(true); ?>
because on line 49 of the script you are “returning” the variable instead of “echoing”
49: return $sub_quotes[rand(0, count($sub_quotes)-1)][1];
should be:
49: echo $sub_quotes[rand(0, count($sub_quotes)-1)][1];Forum: Fixing WordPress
In reply to: Using HTML/javascript/imagemap in a post/Under Options->Writing, do you have “WordPress should correct invalidly nested XHTML automatically” UNCHECKED?
Also try using the markdown plugin.
I did those plus removed the filter and it works for me!Forum: Fixing WordPress
In reply to: Using HTML/javascript/imagemap in a post/Try disabling “wptexturize” filter in /wp-includes/vars.php
on line 185, comment out as below:
//add_filter('the_content', 'wptexturize');Forum: Fixing WordPress
In reply to: re-direct on indexWhy do you have a frame? don’t you know frames are bad. π
Also not too sure what you are asking here?? You don’t need to have a frame.Forum: Fixing WordPress
In reply to: $posts_per_pageTo limit posts per page, go “Options -> Reading”. Then set:
Show the most recent: 10 “posts paged”.
For the next/previous tags:
http://wiki.wordpress.org/posts_nav_linkForum: Themes and Templates
In reply to: Css not working!You Have:
<style type="text/css" media="screen">
@import url(/wp/wp-layout.css );
</style>
change to:
<style type="text/css" media="screen">
@import url(/wp/wp-layout.css );
@import url( /style.css );
</style>Forum: Themes and Templates
In reply to: Css not working!You have:
<style type="text/css" media="screen">
@import url(/wp-layout.css );
</style>
Change to:
<style type="text/css" media="screen">
@import url(/wp/wp-layout.css );
</style>