通常我可以毫无问题地执行此操作,但我在此处删除了一些语法,并在此代码中从页面标题中删除了日期:
echo '<h3><a href="' . get_permalink($recent["ID"]) . '" title="Look '.esc_attr($recent["post_title"]).'" >' . $recent["post_title"] .'</a> ' . date("F jS, Y", strtotime($recent['post_date'])) . "</h3>";
如何在不删除整个页面的情况下删除日期?
答案 0 :(得分:3)
只需删除日期功能
echo '<h3><a href="' . get_permalink($recent["ID"]) . '" title="Look '.esc_attr($recent["post_title"]).'" >' . $recent["post_title"] .'</a> </h3>';
答案 1 :(得分:2)
试试这段代码: -
echo '<h3><a href="'.get_permalink($recent["ID"]).'"title="Look'.esc_attr($recent["post_title"]).'" >'.$recent["post_title"] .'</a></h3>';