I'm a beginner in Wordpress and I'm developing a theme for a blog in it and I need to create a presentation that includes a brief summary of the blogger plus her photo. Well, I created a type of post called presentation and inside it I want to insert a field (metabox) of type image, that where to explore the library of Wordpress or do a new upload. Is there any way to do this?
Another question: can not I save the value of the photo field, because it is a file?
My functions.php file
// cria a pagina apresentacao no admin
function type_post_apresentacao() {
$labels = array(
'name' => _x('Apresentação', 'post type general name'),
'singular_name' => _x('Apresentação', 'post type singular name')
);
$args = array(
'labels' => $labels,
'public' => true,
'register_meta_box_cb' => 'apresentacao_meta_box',
'supports' => array('title','editor','thumbnail', 'revisions')
);
register_post_type( 'apresentacao' , $args );
flush_rewrite_rules();
}
// Cria a meta_box
function apresentacao_metabox() {
// Tipos de post para a metabox
$screens = array( 'post', 'page', 'apresentacao' );
foreach ( $screens as $screen ) {
add_meta_box(
'apresentacao_meta_box', // ID da Meta Box
'Imagem de perfil', // Título
'apresentacao_metabox_callback', // Função de callback
$screen, // Local onde ela vai aparecer
'normal', // Contexto
'high' // Prioridade
);
}
}
// Essa é a função que vai exibir os dados para o usuário
function apresentacao_metabox_callback( $post ) {
wp_nonce_field( 'apresentacao_custom_metabox', 'apresentacao_custom_metabox_nonce' );
$foto = get_post_meta( $post->ID, '_tp_post_foto', true );
echo '<pre>';
var_dump($post);
echo '</pre>';
echo "<input id='foto' type='file' value='$foto' name='_tp_post_foto' />";
}
function apresentacao_save_custom_metabox_data( $post_id ) {
update_post_meta( $post_id, '_tp_post_foto', $foto );
}
// add actions
add_action('init', 'type_post_apresentacao');
add_action( 'save_post', 'apresentacao_save_custom_metabox_data' );
add_action( 'add_meta_boxes', 'apresentacao_metabox', 1 );
This is the $ post var_dump
object(WP_Post)#5363 (24) {
["ID"]=>
string(2) "56"
["post_author"]=>
string(1) "1"
["post_date"]=>
string(19) "2017-07-31 11:09:10"
["post_date_gmt"]=>
string(19) "2017-07-31 14:09:10"
["post_content"]=>
string(6) "dsadas"
["post_title"]=>
string(9) "dasdasdas"
["post_excerpt"]=>
string(0) ""
["post_status"]=>
string(7) "publish"
["comment_status"]=>
string(6) "closed"
["ping_status"]=>
string(6) "closed"
["post_password"]=>
string(0) ""
["post_name"]=>
string(9) "dasdasdas"
["to_ping"]=>
string(0) ""
["pinged"]=>
string(0) ""
["post_modified"]=>
string(19) "2017-07-31 11:09:10"
["post_modified_gmt"]=>
string(19) "2017-07-31 14:09:10"
["post_content_filtered"]=>
string(0) ""
["post_parent"]=>
string(1) "0"
["guid"]=>
string(68) "http://localhost/wordpress/?post_type=apresentacao&p=56"
["menu_order"]=>
string(1) "0"
["post_type"]=>
string(12) "apresentacao"
["post_mime_type"]=>
string(0) ""
["comment_count"]=>
string(1) "0"
["filter"]=>
string(4) "edit"
}