Mossill Montgomery
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: [Custom Content Type Manager] Search With Multiple Custom FieldYea, I’ve been running into this issue also. when I try to query more than one custom field I get 0 results. I’ve had to go back to the older way using wp_query and meta_key/value.
if I try:
$Q = new GetPostsQuery();
$args = array();
$args[‘post_type’] = ‘video’;
$args[‘Type’] = ‘Members’;
$args[‘aws_name’] = ‘whatevername’;
$args[‘orderby’] = ‘Part’;
$results = $Q->get_posts($args);I get 0 results. I’ve tried this a few times, and get 0 results when using 2 or more custom args to filter results.
This would be nice and save time because we can use custom field names directly instead of the wp+query, meta key/value technique
isn’t there a general way to detect ajax loaded content with jquery so that we can attach functions/events to new content ?
Forum: Plugins
In reply to: [Simple Rating] Flexible Functionawesome!
Forum: Plugins
In reply to: [Simple Rating] Flexible Functioncool 🙂
Forum: Plugins
In reply to: [Reorder Posts - Quick Post Type and Page Ordering] Sort not workingIt really depends how your using wordpress.
I’m using a custom built template for each page on the website. On any given template page, I’m using this code to print out some posts. If you read the code, it’s saying:
• grab all the post types that are ‘products’
• in the ‘dvd’ category
• and sort them according to the ‘menu_order’ settings.Forum: Plugins
In reply to: [Reorder Posts - Quick Post Type and Page Ordering] Sort not workingIt works, and I love this plugin !!!
global $wp_query;
$args = array(
‘category_name’ => ‘dvd’,
‘orderby’ => ‘menu_order’,
‘order’ => ‘ASC’,
‘post_type’ => ‘products’
);
query_posts( $args );When I put in “domain.com”, it works. But www jumps to the non-www.
I want the www to remain that way. Is this possible ?
wow, I was just having this issue also. Did you find a solution ?