ColdForged
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Gamers’ wp-email problemCan you elaborate. I think the problem is that, at least for me, I have no idea what you’re asking or what you tried.
Forum: Plugins
In reply to: comment style quicktagsSounds like you need to write a plugin and use an
add_filter()onthe_content. Base it on code in thewp-includes/template-functions-post.phpfile in theget_the_content()function which is the one that processes the<!--more-->and<!--noteaser-->tags.Forum: Installing WordPress
In reply to: Users lvl 10 being editable for lvl 9He’s apparently on WordPress 1.2.1. Be sure to let us know what version you’re running, otherwise people will assume you’re on the latest.
Forum: Fixing WordPress
In reply to: Paging not working in 1.5I basically cut and pasted the stuff I still needed inside the begin/end and it works just fine now.
That’s likely the one thing you don’t want to do, unfortunately. Everything inside the #BEGIN/#END pair is considered to be “owned” by WordPress, and will be rewritten anytime the rewrite rules need to be modified (e.g. when you create a new Page).
So, deleting the old WordPress rules is fine and keeping the “stuff you still needed” is fine, but place them either before or after the WordPress stuff.
And another pastebin is available at http://pastebin.com
Forum: Fixing WordPress
In reply to: Paging not working in 1.5While ordinarily we’d yell and mock people for posting source directly in here instead of a pastebin ;), the problem lies in this line:
RewriteRule ^notebook/category/?(.*) /index.php?category_name=$1 [QSA]Which is above the WordPress rules. Why is that there?
In other words, the stuff between the #BEGIN and #END is what WordPress added to handle your permalinks. The stuff above it — which maybe came from a previous installation? — is gettting at it before it can hit the “good” rules.
Forum: Fixing WordPress
In reply to: Main Page, News from a specific categoryMaybe I wasn’t clear… we understand what you want. Kafkaesqui provided a method to do what you want but you said that “it doesn’t help you” and asked for something easier. I said that’s as easy as you’re going to get in WordPress, and asked which part of Kafka’s recommendation you were having difficulty either understanding or getting to work.
Those are referred to as “asides”.
Forum: Fixing WordPress
In reply to: problem creating a new PageCurrently at a loss.
Forum: Fixing WordPress
In reply to: problem creating a new PageYou downloaded a fresh copy of the ZIP file from the WordPress site?
Forum: Fixing WordPress
In reply to: How to extract all posts to one category and move to a new database?Nope. By “including” I mean the following:
<?php query_posts('cat=1,2,4,6,7,8,9');?>Forum: Fixing WordPress
In reply to: problem creating a new PageYour
wp-admin/edit-page-form.phpis somehow corrupted in your download. I’d chunk the ZIP file and redownload, then upload that file to your server.Forum: Fixing WordPress
In reply to: How to extract all posts to one category and move to a new database?WordPress doesn’t support multiple category exclusions, unfortunately, nor will it for the forseeable future. That said, if you want to attempt it you can see some directions here for adding support into WordPress for multiple category exclusions. Note if you don’t know PHP then don’t attempt it… no warranty is either expressed or implied and you’ll be on your own :).
Note that you have the option of including all of the categories you want to include instead of excluding the two categories you don’t want.
Forum: Fixing WordPress
In reply to: Angle Brackets in Write Post (e.g. < and >)You can paste your IRC chats into something like this to encode them for pasting into WordPress. This is not necessarily a WordPress failing, but rather a limitation of working in an environment where it’s assumed you’re writing HTML.
Forum: Fixing WordPress
In reply to: is_page()Could you try rewording your question or elaborating? I’m not following you at this point. To directly answer without more understanding of your needs, you could always modify the global
$queryobject and do the following:global $query;
$query->is_page = true;But if you do it before The Loop, it’ll get reset anyway.
Forum: Fixing WordPress
In reply to: Main Page, News from a specific categoryUnfortunately that’s about as easy as it will get. Which part are you having trouble with?