ywftdg
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can’t search if the word begins with letter dMake that a third person, I am getting this error right now also. Checked my entire database, nothing wrong or any corrupt values.
Forum: Plugins
In reply to: contributor/editor/author widgetI am curious how you got this work. I have added this into my functions, but it returns no results.
Forum: Plugins
In reply to: Custom Query Tag = and Tag !=Bump: nobody out there ever had to query wordpress database using LIKE?
Forum: Plugins
In reply to: Custom Query Tag = and Tag !=I have even tryed using a custom query, and the mysql LIKE feature does not work.
$querystr = " SELECT wposts.* FROM $wpdb->posts wposts, $wpdb->postmeta wpostmeta WHERE wposts.ID = wpostmeta.post_id AND wpostmeta.meta_key = 'tag' AND wpostmeta.meta_value LIKE 'art%' AND wposts.post_status = 'publish' AND wposts.post_type = 'post' ORDER BY wposts.post_date DESC ";What is the deal with LIKE not working?
Forum: Plugins
In reply to: Press This and setting a Default CategoryWell, wasn’t able to do how I was thinking, but if you set that _REQUEST back to the default, then add this in your design somewhere it will let you choose a cat.
<div id="categorydiv" class="stuffbox"> <h3><?php _e('Categories') ?></h3> <div class="inside"> <div id="categories-all"> <ul id="categorychecklist" class="list:category categorychecklist form-no-clear"> <?php wp_category_checklist($post->ID, false, false, $popular_ids) ?> </ul> </div> </div> </div>Forum: Plugins
In reply to: Press This and setting a Default CategoryI would love to know this also. In your case, I think you need to define the cat by the number, not actual name. But either way, I am trying same thing sort of, and it wont set it. I can define it, but for some reason it does not save it when I click publish. You ever get it working?
Forum: Fixing WordPress
In reply to: When I (Admin) Post it puts another user’s name on the postI am having the same issue, anyone find a way to resolve this?
WordPress 2.7Forum: Fixing WordPress
In reply to: query_posts and exclude tagI am trying the same thing, but using the ‘tag__in’ => array(’21’),
‘tag__not_in’ => array(’20’), type code does nothing. Does this usually work?Forum: Fixing WordPress
In reply to: How can I exclude a tag from WP_Queryever find a fix?