如果 post 属于特定作者,则显示内容

Show content if the post belongs to a specific author

如果访问者访问的 post 属于特定作者,我想知道是否有任何方法可以为访问者启用脚本。

这是我想包含在 header.php 或 single.php 中的脚本,如果访问者转到属于 James 的 post,则显示或启用以下脚本在 header:

<script src="/wpauthors/james.js"></script>
function authScript() {
    if(get_the_author_meta('ID' == 2) {  // 2 is James uer ID here
      echo '<script src="/wpauthors/james.js"></script>';
    }
}
add_action('wp_head', 'authScript');

将此添加到您的 functions.php。它应该工作。我自己还没有测试过。