dev-stable
dev-stable
GPL2
The Requires
- php >=5.3
by Wataru Okamoto
dev-master
9999999-dev
GPL2
The Requires
- php >=5.3
by Wataru Okamoto
0.1.0
0.1.0.0
GPL2
The Requires
by Wataru Okamoto
Wallogit.com
2017 © Pedro Peláez
Helper class for the wp_insert_post(), (*2)
Create a composer.json in your project root., (*3)
{
"require": {
"megumi/wp-post-helper": "*"
}
}
$args = array(
'post_name' => 'slug', // slug
'post_author' => '1', // author's ID
'post_date' => '2012-11-15 20:00:00', // post date and time
'post_type' => 'post', // post type (you can use custom post type)
'post_status' => 'publish', // post status, publish, draft and so on
'post_title' => 'title', // post title
'post_content' => 'content', // post content
'post_category'=> array( 1, 4 ), // category IDs in an array
'post_tags' => array( 'tag1', 'tag2' ), // post tags in an array
);
$helper = new Megumi\WP\Post\Helper( $args );
$post_id = $helper->insert();
$args = array(
...
);
$helper = new Megumi\WP\Post\Helper( $args );
$post_id = $helper->insert();
$attachment_id = $helper->add_media(
'http://placehold.jp/100x100.png', // path or url
'title',
'description',
'caption',
false
);
$args = array(
...
);
$helper = new Megumi\WP\Post\Helper( $args );
$post_id = $helper->insert();
$post->add_meta(
'meta_key', // meta key
'meta_val', // meta value
true // add it as unique (true) or not (false)
);
$args = array(
...
);
$helper = new Megumi\WP\Post\Helper( $args );
$post_id = $helper->insert();
$post->add_field(
'field_xxxxxxxxxxxxx', // key
'field_val' // value
);
Clone this project., (*4)
$ git clone git@github.com:megumiteam/wp-post-helper.git
Initialize the testing environment locally:, (*5)
(you'll need to already have mysql, svn and wget available), (*6)
$ bash bin/install-wp-tests.sh wordpress_test root '' localhost latest
Install phpunit., (*7)
$ composer install
The unit test files are in the tests/ directory., (*8)
To run the unit tests, just execute:, (*9)
$ phpunit
GPL2
GPL2
GPL2