• Resolved emreguler

    (@emreguler)


    I created a custom upload field with WCK and select attach upload to post.
    but my uploads don’t attach to post so the codes in below not working.

    $attachment = get_children(array('post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image'));
    					if ($attachment) {

    Note: An upload field that created before this field is still working. Please help…

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

    (@emreguler)

    I solved my problem. I use the code below instead of above…

    $my_meta = get_post_meta( $post->ID, 'MYMETASLUG', true );
    					if( !empty( $my_meta ) ){
Viewing 1 replies (of 1 total)

The topic ‘Attachment Problem’ is closed to new replies.