Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi Guys i am in problem can't find my attached image in custom post type please check. the code in functions.php


    $prefix = 'custom_';
    $custom_meta_fields = array(

        array(
            //'label'   => 'Textarea',
            'desc'  => 'A description for the field.',
            'id'    => $prefix.'textarea',
            'type'  => 'textarea'
        )
    );


    // Default metabox for custom post types.
    function avz_custom_meta_box() {

       // $post_types = get_post_types( array( 'public' => true ) );
       $post_types = get_post_types();
        foreach ( $post_types as $post_type ) {
            if ( $post_type == 'page' || $post_type =='post' )
                continue;
            add_meta_box(
            $prefix.'image', 
            'Header Image Upload Box', 
            'show_avz_custom_meta_box', 
            $post_type, 
            'normal', 
            'high' );
        }

    }
    add_action('add_meta_boxes', 'avz_custom_meta_box');

        enter code here

    function show_avz_custom_meta_box() {
        global $avz_custom_meta_box_fields, $post;
        // Use nonce for verification
        echo '';

        // Begin the field table and loop
        echo '';
        foreach ($avz_custom_meta_box_fields as $field) {
            // get value of this field if it exists for this post
            $meta = get_post_meta($post->ID, $field['id'], true);
            // begin a table row with
            echo '
                    ';
                    switch($field['type']) {
                        case 'image':
                            $image = get_template_directory_uri().'/images/image.png';  
                            echo ''.$image.'';
                            if ($meta) { $image = wp_get_attachment_image_src($meta, 'medium'); $image = $image[0]; }               
                            echo    '
                                        
 Remove Image '.$field['desc'].''; break; } //end switch echo ''; } // end foreach echo ''; // end table } // Save the Data function save_multiBox_custom_meta($post_id) { global $avz_custom_meta_box_fields; // verify nonce if (!wp_verify_nonce($_POST['avz_custom_meta_box_fields_nonce'], basename(__FILE__))) return $post_id; // check autosave if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) return $post_id; // check permissions if ('page' == $_POST['post_type']) { if (!current_user_can('edit_page', $post_id)) return $post_id; } elseif (!current_user_can('edit_post', $post_id)) { return $post_id; } // loop through fields and save the data foreach ($avz_custom_meta_box_fields as $field) { if($field['type'] == 'tax_select') continue; $old = get_post_meta($post_id, $field['id'], true); $new = $_POST[$field['id']]; if ($new && $new != $old) { update_post_meta($post_id, $field['id'], $new); } elseif ('' == $new && $old) { delete_post_meta($post_id, $field['id'], $old); } } // enf foreach // save taxonomies $post = get_post($post_id); $category = $_POST['category']; wp_set_object_terms( $post_id, $category, 'category' ); } add_action('save_post', 'save_multiBox_custom_meta');
and in single.php 

<pre>

if( $image_upload_id = get_post_meta($post->ID, $field['custom_image'], true)){
    $img = $image_upload_id ['custom_image'][0];
    echo wp_get_attachment_image($img, 'full'); 
}

But can't find attached image. In admin uploaded image show but in post page not showing. Guys help me. i know do mistakes and bad coding. :(

share|improve this question
Friends need help, :( – Abdullah Jun 29 '12 at 9:36

1 Answer

Have you tried to access the post attachments? just to see if its there?

<?php 
$args = array(
'post_type' => 'attachment',
'numberposts' => null,
'post_status' => null,
'post_parent' => $post->ID
);

$attachments = get_posts($args);
if ($attachments) {
    echo "<pre>";
    print_r($attachments);
    echo "</pre>";
    $attachment = $attachments[0];
    // print full link to attachment
    the_attachment_link($attachment->ID, false);
}else{
    echo "No Attachments for this post!";
}
?>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.