它可能会像你预期的那样得到日期,但是>
本质上是一个数学运算符,您试图使用它来比较两个字符串。
您可以使用strtotime()
将日期转换为整数(自1970-01-01
), 并比较这些。
// Hide By-Line
add_action(\'wp_head\',\'my_head_css\');
function my_head_css(){
$excludeDate = date("2021-06-02");
$postDate = get_the_date(\'Y-m-d\');
if( strtotime( $postDate ) > strtotime( $excludeDate ) ){
echo "<style> .entry-author {display:none !important;} </style>";
}
}