Things
开发者 |
mitchoyoshitaka
|
更新时间 |
2012年2月28日 01:32 |
捐献地址: |
去捐款 |
PHP版本: |
3.3 及以上 |
WordPress版本: |
3.4 |
详情介绍:
An object-oriented approach to WordPress queries and custom post types. Un(der)documented beta.
So, here's the idea: anywhere where you need a loop, use get_things()
, which will return an array-like collection of Things. get_things()
will return Things from the main query; get_things($query_args)
will run a new query for you. Each Thing in the collection is a magical object that will make your life better.
foreach ( get_things() as $thing ):
// get an attribute (object or string)
$author = $thing->author;
// echo an attribute with the_* methods
$thing->the_title();
// get another Thing
$parent = $thing->parent;
endforeach;
Each Thing automatically has properties and associated the_*
methods for the standard WordPress data and taxonomies associated with that post type. Meta (custom field) properties are created when you specify meta
in your custom post type arguments. If you want to add custom methods or properties, create a subclass of Thing
and register that with a particular post type.
安装:
...
更新日志: