• Resolved sandor555

    (@sandor555)


    Hello!
    How to insert php code in custom field value? Or alternative solution.
    i need automatic post title in custom field value.
    Sorry, i little speak english.
    Please help me.
    Thanks.

Viewing 1 replies (of 1 total)
  • Thread Starter sandor555

    (@sandor555)

    solution:

    function copy_title_to_meta( $post_ID )
    {
        $meta_field = 'pm_title'; // egyedi meződ neve
        $post = get_post( $post_ID );
        if( $post->post_status == 'inherit' ) $post = get_post( $post->post_parent );
        if ( $post->post_status == 'publish' AND !wp_is_post_revision( $post_ID ) ) update_post_meta( $post->ID, $meta_field, $post->post_title, false ); 
    
        return $post_ID;
    }
    add_action( 'wp_insert_post', 'copy_title_to_meta' );

Viewing 1 replies (of 1 total)

The topic ‘costum field value = post title automatic’ is closed to new replies.