notsewmit
Forum Replies Created
-
Forum: Plugins
In reply to: Daily ScriptureSorry about that… I think I forgot to put usage information in the zip file. All you have to do is put <?php daily_scripture(); ?> wherever you want it to show up and you’re all set.
When I get a chance, I’ll update the docs in my zip file to include that note.Forum: Plugins
In reply to: Incorporating Scripturizer Into a PluginI have one more question… is there a way to tell if a plugin is installed and enabled? I’d like the option of not requiring Scripturizer for this plugin to work, but I don’t know how to write code to check if it is installed and enabled.
If there’s no way to do it, I guess I can just give the user the option to link the text or not during installation.Forum: Plugins
In reply to: Incorporating Scripturizer Into a PluginThanks a bunch for that link… it looks like that should take care of it.
Forum: Plugins
In reply to: Incorporating Scripturizer Into a PluginMoshu –
Thanks, but from what I can tell it is used on the publish_post event. I’m not sure how I could use it on a plugin that goes in your sidebar that is not dependent on publishing a post.Forum: Fixing WordPress
In reply to: How to enable img tags in comments?The file template-functions-general.php (in wp-includes) has a function called allowed_tags(). You should be able to add img to that list
Forum: Plugins
In reply to: Link to blog in wp-emialYou need to make sure the e-mail is sent in HTML format. I think this code is in class-phpmailer.php.
If you search that file for IsHTML, you should be able to find it.Forum: Fixing WordPress
In reply to: File Upload OwnerThanks macmanx, but I was talking about the WordPress file upload feature, not an FTP app.
Forum: Fixing WordPress
In reply to: Where do I put this php code?I found a plugin that someone created that does what your looking for. I haven’t tested it, but the creator may be able to help you.
http://mookitty.co.uk/devblog/category/show-categories/Forum: Fixing WordPress
In reply to: Nice titles on all pagesIt looks like you’re doing the same thing Brad Choate is doing at http://www.bradchoate.com/ I’ve e-mailed him about things in the past, so I’m sure he’d be willing to help you out.
Forum: Fixing WordPress
In reply to: Where do I put this php code?Can you do a quick sample here?
Forum: Fixing WordPress
In reply to: New topic defaults…Go to Options > Discussion, uncheck the first three checkboxes, and click Update Options. That will set the defaults to no for Comments, Pings, and PingBack on all new posts.
Forum: Fixing WordPress
In reply to: Nice titles on all pagesartitumis,
I use the following code on my site (http://www.tim-weston.com/) for page titles. Here’s the code I use; if it is similar to want you want feel free to use/modify it.
<?php
if ($single) {
// if it is a page with a single post
?>
<title><?php the_title(); ?> (tim-weston.com)</title>
<?php
} elseif ($cat) {
// if it is a page of all posts in a given category
?>
<title>tim-weston.com - <?php single_cat_title('', display); ?></title>
<?php
} else {
// all other pages; I haven't found a variable for date-based archives
?>
<title>tim-weston.com</title>
<?php
}
?>Forum: Fixing WordPress
In reply to: Where do I put this php code?Phillip,
Can you show me how you want it to appear on your page? If I can see what your desired output is, I’ll have an easier time helping you :^)Forum: Fixing WordPress
In reply to: Excerpt/Entire PostI’m not sure… I don’t have any problems on my site with XHTML. It validates fine and appears as desired.
If you have more details, let me know.Forum: Requests and Feedback
In reply to: Some sort of display for all postsDid you want this on your site or inside the admin area? Let me know and I’ll try to work on it.