Home >Backend Development >PHP Tutorial >如何在文章页以外调用wordpress文章的第一条评论

如何在文章页以外调用wordpress文章的第一条评论

WBOY
WBOYOriginal
2016-06-06 20:52:09983browse

最好是系统函数 而不是数据库调用

回复内容:

最好是系统函数 而不是数据库调用

据我所知,没有这个函数。需要自己去写。
可以在

wp-includes/comment.php

增加一个funciton

function get_first_approved_comment($post_id) {
    global $wpdb;
    return $wpdb->get_results($wpdb->prepare("SELECT * FROM $wpdb->comments WHERE comment_post_ID = %d AND comment_approved = '1' ORDER BY comment_date DESC limit 1", $post_id));
}
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn