2017-07-10 13 views

答えて

0

get_comments($ args);を使用できます。コメントを得るための関数。ここで

<?php 
    $args = array(
     'order' => 'DESC', 
     'post_id' => 1, 
    ); 
    get_comments($args); 
?> 

がwordpress.orgのドキュメントです:

https://codex.wordpress.org/Function_Reference/get_comments

このような
関連する問題