我一直在尝试查询2个日期日期,但在日期之间没有找到任何内容。我得出的结论可能是CloudCode上的一个错误,导致无法正确搜索。
$thetitle = $post->post_excerpt; /* or you can use get_the_title() */
$getlength = strlen($thetitle);
$thelength = 50;
echo $thetitle = substr($thetitle, 0, $thelength);
if ($getlength > $thelength) {
echo $thetitle = $thetitle . '...';
}