Table of Contents
This Default Field Type is available in WordPress Creation Kit free version. The Number Field is used to add a number.
To add a Number Field to a previously created Custom Meta Box, under the Meta Box Fields tab simply insert a Field Title and under Field Type make sure you select Number.
The Number Field contains options to customize it:
This is how the Number Field we created above looks like in the Edit Screen:
The following examples are for a Custom Meta Box with the “Group Name” argument “my_meta_name“. Make sure to replace this with the “Group Name” you have set up. The Custom Meta Box below is setup to be attached to a post.
The Number Field returns a string containing a number.
To output a value inside The Loop we use the function the_cfc_field():
1 | Value: <!--?php the_cfc_field('my_meta_name', 'my-number'); ?--> |
To assign the value to a variable we use the function get_cfc_field():
1 | <!--?php $first_number = get_cfc_field('my_meta_name', 'my-number'); ?--> |
To output all the “My Number” entries from the repeater field we use the functions get_cfc_meta() and the_cfc_field():
1 | <!--?php foreach( get_cfc_meta( 'my_meta_name' ) as $key => $value ){ the_cfc_field( 'my_meta_name','my-number', false, $key ); } ?--> |
To output a specific “My Number” entry from the repeater field (e.g. the second entry), we use the function the_cfc_field():
1 | <!--?php the_cfc_field( 'my_meta_name','my-number', false, 1 ); ?--> |
The index starts at 0 so that’s why we pass “1” to the function. For the first entry it would be “0”, the second is “1”, the third is “2” and so on…
1 | <!--?php $my_meta = get_post_meta( $post->ID, 'my_meta_name', true ); if( !empty( $my_meta[0]['my-number'] ) ) echo 'Value:'.$my_meta[0]['my-number']; ?--> |
To output all the “My Number” entries in the repeater field:
1 | <!--?php $my_meta = get_post_meta( $post->ID, 'my_meta_name', true ); if( !empty( $my_meta ) ){ foreach( $my_meta as $entry ){ echo $entry['my-number']; } } ?--> |
To output a specific “My Number” entry from the repeater field (e.g. the second entry):
1 | <!--?php $my_meta = get_post_meta( $post->ID, 'my_meta_name', true ); if( !empty( $my_meta[1]['my-number'] ) ) echo $my_meta[1]['my-number']; ?--> |
The index starts at 0 so that’s why we pass “1” to the function. For the first entry it would be “0”, the second is “1”, the third is “2” and so on…
1 | <!--?php /* get the first entry */ $first_value = get_post_meta( $post->ID, 'my-number', true ); /* get the third entry */ $third_value = get_post_meta( $post->ID, 'my-number_2', true ); ?--> |
Combine the power of Profile Builder with Paid Member Subscriptions to set up user registration, memberships, and recurring revenue.
Get 25% off with the bundle