当我在WordPress设置中启用 PHP 错误报告时,我不断收到此错误。
Notice: Only variable references should be returned by reference in /Users/admin/Sites/wp-includes/post.php on line 3394
我觉得这与分类法及其层次结构有关。
一段时间以来一直在尝试在我正在编写的插件中追踪它。
这些是 WP Core 中的实际代码行,返回在精确的行上。
// Make sure the post type is hierarchical
$hierarchical_post_types = get_post_types( array( 'hierarchical' => true ) );
if ( !in_array( $post_type, $hierarchical_post_types ) )
return false;
我会继续调试它,直到找到问题为止,但是任何输入都会很好,因为我没有在我的插件中找到问题。