wpseek.com
A WordPress-centric search engine for devs and theme authors
add_post_meta › WordPress Function
Since1.5.0
Deprecatedn/a
› add_post_meta ( $post_id, $meta_key, $meta_value, $unique = false )
Parameters: (4) |
|
Returns: |
|
Defined at: |
|
Codex: |
Adds a meta field to the given post.
Post meta data is called "Custom Fields" on the Administration Screen. For historical reasons both the meta key and the meta value are expected to be "slashed" (slashes escaped) on input.Source
function add_post_meta( $post_id, $meta_key, $meta_value, $unique = false ) { // Make sure meta is added to the post, not a revision. $the_post = wp_is_post_revision( $post_id ); if ( $the_post ) { $post_id = $the_post; } return add_metadata( 'post', $post_id, $meta_key, $meta_value, $unique ); }