2

How I can easily add with metabox file upload place.Didnt want to use plugin.I had added metabox with text but with file upload I am a bit confused.Here is the code with what am adding text metabox

function cd_meta_box_music() {
global $wpdb;
$musicLink = get_post_meta(get_the_ID(), 'musicLink', true);
wp_nonce_field('my_meta_box_nonce', 'meta_box_nonce');
global $blog_id;
$posts = $wpdb->get_results('SELECT ID, post_title FROM wp_posts WHERE post_status = "publish" AND post_type = "video-list" ORDER BY ID DESC LIMIT 10000');
?>
<p>
    <label for="musicLink">Put link here</label><br/>
    <input style="margin-top: 15px;width:100%;" type="text" name="musicLink" value="<?php echo $musicLink; ?>"><br/> 
</p><?php
 $factstitle = get_post_meta(get_the_ID(), 'factstitle', true);?>
 <p>
    <label for="factstitle">Interesting facts title</label><br/>
    <input style="margin-top: 15px;width:100%;" type="text" name="factstitle" value="<?php echo $factstitle; ?>"><br/> 
</p><?php
$factssubtext = get_post_meta(get_the_ID(), 'factssubtext', true);?>
<p>
    <label for="factstitle">Put interesting facts subtext here</label><br/>
    <input style="margin-top: 15px;width:100%;" type="text" name="factssubtext" value="<?php echo $factssubtext; ?>"><br/> 
</p><?php
?>
<?php

}

1 Answer 1

1

can you see if this question helps you. I am not sure but I think he is asking the same thing or almost same

https://wordpress.stackexchange.com/questions/67065/properly-add-an-upload-media-button-in-a-meta-box-field

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.