2017-01-27 2 views
1

Я бы хотел, чтобы 2 столбца заполнялись данными на странице одного продукта woo commerce. У меня есть следующие строки кодаСоздайте два столбца в html или php

Audiofiles: 
 
<?php 
 

 
echo get_post_meta($post->ID, '_text_field_audiofiles', true); 
 
?> 
 
<BR> 
 
Format: 
 
<?php 
 
echo get_post_meta($post->ID, '_text_field_format', true); 
 
?> 
 
<BR> 
 

 
Bitrate: 
 
<?php 
 
echo get_post_meta($post->ID, '_select_bitrate', true); 
 
?> 
 
<BR> 
 

 
Samplerate: 
 
<?php 
 
echo get_post_meta($post->ID, '_select_samplerate', true); 
 
?>

Использование столбцов будет красивей, потому что столбцы будут выравнивать текст. Любая помощь очень ценится!

ответ

2
<table style="width:100%"> 
<tr style="height:50px"> 
<td style="width:50%;height:50px"> 
<?php 
echo get_post_meta($post->ID, '_text_field_audiofiles', true); 
?> 
</td> 
<td style="width:50%;height:50px"> 
<?php 
echo get_post_meta($post->ID, '_text_field_format', true); 
?> 
</td> 
</tr> 
<tr style="height:50px"> 
<td style="width:50%;height:50px"> 
<?php 
echo get_post_meta($post->ID, '_select_bitrate', true); 
?> 
</td> 
<td style="width:50%;height:50px"> 
<?php 
echo get_post_meta($post->ID, '_select_samplerate', true); 
?> 
</td> 
</tr> 
</table> 
+1

Большое спасибо !!!! – Giel