Código PHP:
Ver original
add_action('admin_init', 'mega_add_custom_box', 1); function mega_add_custom_box() { add_meta_box( 'id_mega', 'URL MEGA', 'wp_box_mega', 'post' ); } function wp_box_mega($post) { wp_nonce_field(plugin_basename(__FILE__), 'mega_noncename'); if($_GET['action']=='edit'){ $mega=get_post_meta($post->ID,'mega',true); echo'<textarea name="mega" style="width:100%"/>'.$mega.'</textarea>'; }else{ echo'<textarea name="mega" style="width:100%"/></textarea>'; } } add_action('save_post', 'guardar_mega'); function guardar_mega($post_id){ if ( !wp_verify_nonce( $_POST['mega_noncename'], plugin_basename(__FILE__) ) ) return $post_id; return $post_id; if ( !current_user_can( 'edit_post', $post_id ) ) return $post_id; delete_post_meta($post_id, 'mega'); add_post_meta($post_id, 'mega', esc_attr($_POST['mega'])); } }
y para recuperar lo que ingreso en ese textarea en mi single.php utilizo:
Código PHP:
Ver original
<?php echo get_post_meta(get_the_ID(), 'mega', true); ?>
el problema esta en que aunque yo ingrese los enlaces uno debajo de el otro en el textarea, en el post se ven todos en la misma linea, unas imágenes para que vean:
hay alguna forma de hacer que el texto salga un enlace debajo del otro como lo ingreso en el textarea?