0
我正在構造一個自定義WordPress主題中的comments.php。無法在另一個wordpress函數上堆疊一個div
我有發佈元數據包裹在一個div。我有comment_text函數包裹在另一個div。帖子元數據位於評論之上。我遇到的問題是獲取後期元數據的底部以及要加入的comment_text的頂部。兩者之間有空間。都在裏面。
我試圖把兩個包裝div,並沒有奏效。去除div和li上的所有填充,邊距並且沒有幫助。這裏是我的代碼:
<div class="comment_wrapper">
<div class="post_meta_data">
Posted by: <?php comment_author_link(); ?> on <?php comment_date();?>
</div><!--end .post_meta_data-->
<div class="comment_text">
<?php comment_text(); ?>
</div><!--end .comment_text-->
</div><!--end .comment_wrapper-->
有什麼建議?謝謝