摘要:
使用 setcookie 函数设置 cookie 报错,报错信息为: setcookie() expects parameter 3 to be integer, float given in... 错误代码 setcookie("user_name", $username, time()+3153 阅读全文
摘要:
wordpress 获取指定作者或者文章的所有评论数量 <?php $args = array( 'post_author' => '' // fill in post author ID ); $author_comments = get_comments($args); echo count($ 阅读全文