rgkeir
Forum Replies Created
-
Forum: Plugins
In reply to: Reverse order postingThis is why I love WP. I just decided I needed to reverse order
posts in some categories and it took me all of about 2 minutes
to find 2 different solutions.Thank you all – the forums are terrific and WP rocks.
Forum: Fixing WordPress
In reply to: No Longer Pinging Update Services after 1.5.1Did you check and make sure that class-IXR.php in wp-includes
still has the IXR in uppercase? It seems to be the only file in wp
that uses upper case and I had a problem cause (like a dummy) I
forgot to switch off “force lower case” in my ftp client.If functions.php can’t access class-IXR.php there won’t be any
IXR_client to send to pingomatic.Forum: Fixing WordPress
In reply to: Upgrade 1.5 > 1.5.1Nice easy upgrade. Fast and no problems, thanks for the instructions.
Forum: Fixing WordPress
In reply to: How to stop WP from inserting `<br />` in my javascript?I was thinking of that as a last desperate (or interim) solution, but I really didn’t want to have do that – I may do it anyway but not to get around the break problem. But I just found an answer that works for 1.5:
in functions-formatting.php on (or around) line 56
function wpautop($pee, $br = 0) – the default was $br = 1
– which inserts the breaks automatically. I changed it to
0 and now my javascript works fine – no more auto breaks.Further down in the code – line 72 – it says: ” if ($br) …..
optionally make line breaks”
but there doesn’t seem to be an option to disable except by
editing the code itself.What a relief.
Forum: Fixing WordPress
In reply to: Line breaks in HTMLIt drove me crazy trying to get rid of the auto inserted
<br />
code. But I found it —in functions-formatting.php on (or around) line 56
function wpautop($pee, $br = 0) – deafault seems to be
$br=1 which inserts the breaks automatically. I changed it to
0 and now my javascript works fine – no more auto breaks.Further down in the code, it says it’s an option but there doesn’t
seem to be a place, except in the code itself, to disable it.What a relief.
Forum: Fixing WordPress
In reply to: How to stop WP from inserting `<br />` in my javascript?Duh. How to stop WP from inserting
<br />
( forgot the backticks) is what I meant. Am I going to have to hack the code? No way to block it or turn it off or ……???Forum: Fixing WordPress
In reply to: How to stop WP from inserting `<br />` in my javascript?Doesn’t anyone know how to actually stop WP from inserting
the
codes in a post. I’m having the same problem but I want to be able to have the javascript in the body of the post rather than being limited to having it in the template only.It’s driving me nuts and there must be way