目前能够在前端显示文章作者ID,没有任何困难。在编辑帖子时,在/wp admin中返回ID被证明是很棘手的。以下是我目前掌握的情况:
$current_user_id = get_current_user_id(); // Get the current users ID
$author_id = get_post_field (\'post_author\', $post_id); // Get the author ID
if( is_user_logged_in() && $current_user_id == $author_id ) {
// wp-dashboard script
}
我尝试了其他几种获取用户ID的方法,但没有成功。通过主题的函数显示$current\\u user\\u id。php文件与其他php代码一起正常工作。可能在运行时没有加载ID。php加载?