=== Inject Query Posts === Contributors: coffee2code Donate link: http://coffee2code.com/donate Tags: wp_query, query, posts, loop, template tags, coffee2code Requires at least: 2.3 Tested up to: 3.0.1 Stable tag: 2.0 Version: 2.0 Inject an array of posts into a WP query object as if queried, particularly useful to allow use of standard template tags. == Description == Inject an array of posts into a WP query object as if queried, particularly useful to allow use of standard template tags. WordPress's template tags are intended to be used within 'the loop'. The loop is managed by a WP_Query object which sets up various global variables and its own object variables for use by the various template tags. The primary purpose of a WP_Query object is to actually query the database for the posts that match the currently specified criteria. However, if you don't need to query for posts since you already have them by some other means, you can still take advantage of the template tags by injecting those posts into the WP_Query via this plugin. Depending on the template tags you are looking to use, or the logic you are hoping to employ within a loop, you may need to manually configure some of the query object's variables. Example: `
  • ` == Installation == 1. Unzip `inject-query-posts.zip` inside the `/wp-content/plugins/` directory for your site (or install via the built-in WordPress plugin installer) 1. Activate the plugin through the 'Plugins' admin menu in WordPress 1. Use the `inject_query_posts()` function to inject an array of posts into a WP query object. Specify the posts array as the first argument. Configure the query object by passing an array as the second argument. If specifying a WP query object, pass it as the third object; if not specified then the global wp_query object will be assumed. == Template Tags == The plugin provides one template tag for use in your theme templates, functions.php, or plugins. = Functions = * `` Injects an array of posts into a query object as if that query object had obtained those posts via a query. = Arguments = * `$posts` (array) Array of posts to inject into the query object. * `$config` (array) Optional. Associative array of query object variables to directly set, and their values. * `$query_obj` (WP_Query|null) Optional. The query object to modify. If null, then the global wp_query object will be used. Pass a string or non-zero integer to have a new query object created and used. * `$preserve_query_obj` (bool) Optional. Should the query object be re-initialized (i.e. reset) prior to injecting posts? = Examples = * (See Description section for an additional example.) * Similar to previous example, for WP 3.0+ ` ` == Filters == The plugin is further customizable via one filter. Typically, these customizations would be put into your active theme's functions.php file, or used by another plugin. = inject_query_posts_preserve_query_obj (filter) = The 'inject_query_posts_preserve_query_obj' filter allows you override the value of the `$preserve_query_obj` argument passed to the function. This is not typical usage for most users. Arguments: * $preserve_query_obj (bool) : Boolean indicating if the query object was set to be preserved or not * $query_obj (WP_Query object) : The WP_Query object passed to the `inject_query_posts()` Example: `// Never preserve the condition of the WP_Query object add_filter( 'inject_query_posts_preserve_query_obj', 'my_preserve_query_obj', 10, 2 ); function my_preserve_query_obj( $preserve_query_obj, $query_obj ) { return false; }` == Changelog == = 2.0 = * If no query_obj is sent, use the global $wp_query object (previously used to create a new query object) * If a not-false, non-object value is sent as $wp_query object (namely any non-empty string or non-zero integer), then create a new WP_Query object for use * Add ability to preserve the state of the existing query_obj * Add $preserve_query_obj arg (optional) to inject_query_posts(), default to true * Add filter 'inject_query_posts_preserve_query_obj' that gets passed value of $preserve_query_obj * Reset more query_obj settings * Wrap function in if(!function_exists()) check * Remove docs from top of plugin file (all that and more are in readme.txt) * Minor code reformatting (spacing) * Add PHPDoc documentation * Note compatibility with WP 2.8+, 2.9+, 3.0+ * Update copyright date * Add package info to top of plugin file * Add Changelog, Filters, Template Tags, and Upgrade Notice sections to readme.txt * Remove trailing whitespace = 1.0 = * Initial release == Upgrade Notice == = 2.0 = Recommended major update! Highlights: now use global WP_Query object by default; added ability to preserve state of existing query object; misc non-functionality changes; expanded readme.txt text; verified WP 3.0 compatibility.