Pledge Meta: Add missing param to doc block for get_pledge_meta_config

This commit is contained in:
Corey McKrill 2019-10-25 16:04:52 -07:00
parent e15522756b
commit 94f2ce4559
No known key found for this signature in database
GPG key ID: C2C0746F7BF17E38

View file

@ -28,9 +28,11 @@ add_action( 'added_post_meta', __NAMESPACE__ . '\update_generated_meta', 10, 4
/**
* Define pledge meta fields and their properties.
*
* @param string $context Optional. The part of the config to return. 'user_input', 'generated', or 'all'.
*
* @return array
*/
function get_pledge_meta_config( $context = '' ) {
function get_pledge_meta_config( $context = 'all' ) {
$user_input = array(
'org-description' => array(
'single' => true,