我目前正在使用Wordpress网站。客户想要的是能够为约定创建计划。他要求的是可以选择点击每个帖子中的按钮,这将增加一个15分钟的Q& A插槽。
我花时间的方式是使用一个帖子的标题,写的时间是11:20 AM - 11:40 AM
我遇到的问题是get_the_title()函数在substr&中使用时是空的。 strrchr。有趣的是,当我把它作为“上午11:20 - 上午11:40”而不是get_the_title()时,它会很好。顺便说一下,我对php还很新,所以我可能不会以正确的方式去做。
我的代码
echo qatime(get_the_title(), "AM");
并且functions.php文件中的代码是
function qatime($string, $cat){
$newCat = $cat;
$stringsplit = substr(strrchr($string, "-"), 1);
$pieces = explode(":", $stringsplit);
$firstnum = preg_replace("/[^0-9]/", '', $pieces[0]);
$lastnum = preg_replace("/[^0-9]/", '', $pieces[1]);
$qaTime = 15;
$minute = $lastnum + $qaTime;
if($minute < 60){
} else {
$firstnum += 1;
$minute -= 60;
}
if($firstnum >= 12){
$firstnum -= 12;
if($firstnum == 0){
$firstnum = 12;
}
$newCat = 'PM';
}
if($pieces[0] == 12){
$cat = 'PM';
}
$minutes = str_pad($minute, 2, "0", STR_PAD_LEFT);
return $stringsplit." ".$cat." - ".$firstnum.":".$minutes." ".$newCat;
}
解决
感谢您的快速回复。 我发现不是使用get_the_title(),而是post-&gt; post-title使它工作。
$string = $post->post_title;
echo qatime($string,'AM');