基于帖子的条件显示按钮

发布于 2025-01-11 00:34:57 字数 180 浏览 0 评论 0原文

我有一个 WordPress 会员网站(自定义,无插件),用户在其中创建个人资料(页面)。在导航栏中,我想显示该页面的链接,但前提是用户创建了个人资料页面(这是自定义帖子类型)。我该怎么做?
类似于:

如果用户在 postype 中有帖子 >显示按钮。
否则什么也不显示。

I have a Wordpress membership site (custom, no plugin) where users create a profile(page). In the navbar I want to display a link to that page, but only if the user has created a profilepage (which is a custom post type). How do I do that?
Something like:

If user has post in postype > display button.
Else display nothing.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一杯敬自由 2025-01-18 00:34:57

尝试如下

function chelsea_user_has_posts($user_id) {
  $result = new WP_Query(array(
    'author'=>$user_id,
    'post_type'=>'custiom_type',  //enter post type slug here
    'post_status'=>'publish',
    'posts_per_page'=>1,
  ));
  return (count($result->posts)!=0);
}

function cross_check_user_items() {
  $user = wp_get_current_user();

    if (chelsea_user_has_posts($user->ID)) {
      echo '<button></button>';
  } else {
    //show them the goods
  }
}
add_action('admin_head', 'cross_check_user_items');

Try like following

function chelsea_user_has_posts($user_id) {
  $result = new WP_Query(array(
    'author'=>$user_id,
    'post_type'=>'custiom_type',  //enter post type slug here
    'post_status'=>'publish',
    'posts_per_page'=>1,
  ));
  return (count($result->posts)!=0);
}

function cross_check_user_items() {
  $user = wp_get_current_user();

    if (chelsea_user_has_posts($user->ID)) {
      echo '<button></button>';
  } else {
    //show them the goods
  }
}
add_action('admin_head', 'cross_check_user_items');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文