Tagged Questions
2
votes
3answers
1k views
Wordpress hook before inserting post into database
I need to do check the inserted post for certain keywords and perform some functions depending on the keywords found.
is there a wordpress hook that executes "just before the post is inserted into ...
5
votes
1answer
4k views
how to limit search to post titles?
Is there a way to limit search to post titles? I know I can modify query.php core file but there must be a way to do it with hooks right?
Thanks in advance!
2
votes
1answer
283 views
Schedule cron event from widget
Can I use wp_schedule_event() to set up a cron job from within a widget?
I tried, but I can't make it work, The problem seems to be the $hook parameter. The function I'm trying to hook is located ...
3
votes
1answer
643 views
Any Hook Called When Post Becomes Published?
Posts may be published either immediately or in the future.
Suppose a plug-in wants to do something at the moment when the post becomes published and visible on the blog (I don't mean when the post ...
6
votes
3answers
1k views
Making Custom Fields Standard in the Admin UI
I've added a few different custom_post_types to my Wordpress 3 installation. They are all a bit different from eachother, and should store unique information in custom_fields. But while one may store ...
1
vote
2answers
1k views
Why isn't is_home() working correctly?
I put a if(is_home()) bit in my theme's functions.php and it doesn't seem to work. The function containing this bit is called on init so is_home should work already.