diff --git a/composer.json b/composer.json index 4cbec55..b88d326 100644 --- a/composer.json +++ b/composer.json @@ -1,26 +1,9 @@ { - "name": "webdevstudios/cmb2-attached-posts", + "name": "spencerm/cmb2-attached-posts", "description": "Custom field for CMB2 for creating post relationships.", "license": "GPL-2.0+", - "authors": [ - { - "name": "WebDevStudios", - "email": "contact@webdevstudios.com", - "homepage": "https://github.com/WebDevStudios", - "role": "Developer" - } - ], - "keywords": ["wordpress", "plugin", "metabox","post","relationship","attached"], - "homepage": "https://github.com/WebDevStudios/CMB2", "type": "wordpress-plugin", - "support": { - "issues": "https://github.com/WebDevStudios/cmb2-attached-posts/issues", - "source": "https://github.com/WebDevStudios/cmb2-attached-posts/" - }, "require": { "php": ">5.2.4" - }, - "suggest": { - "composer/installers": "~1.0" } } \ No newline at end of file diff --git a/init.php b/init.php index df6dbab..2c18fe3 100644 --- a/init.php +++ b/init.php @@ -112,7 +112,7 @@ public function render( $field, $escaped_value, $object_id, $object_type, $field } else { // Setup our args $args = wp_parse_args( $query_args, array( - 'number' => 100, + 'number' => -1, ) ); $post_type_labels = $field_type->_text( 'users_text', esc_html__( 'Users' ) ); }