标签: bbPress
正在查看 4 个帖子:1-4 (共 4 个帖子)
-
作者帖子
-
也是因为有点烦,bbPress 功能太简单了,想要调用资料页面的几个链接都没办法,只能是通过代码实现,效果:
使用方法,添加到主题的 function.php 文件中
* Filter wp_nav_menu() to add profile link */ function prefix_bbp_profile_link_nav_menu($menu) { if ( !is_user_logged_in() ) return $menu; else $current_user = wp_get_current_user(); $user = $current_user->ID; $bbp_profile_url = bbp_get_user_profile_url( $user); $bbp_profile_menu_link = '<li> <a href=" '. esc_url( $bbp_profile_url ) .' "> '. __('👤 我的账户', 'text-domain' ) .' </a> </li>'; $menu = $menu . $bbp_profile_menu_link; return $menu; } add_filter( 'wp_nav_menu_items', 'prefix_bbp_profile_link_nav_menu' );
在未登录的情况下不会显示
报错了…
估计你添加的位置不对,所以才会报错。
-
作者帖子
正在查看 4 个帖子:1-4 (共 4 个帖子)
- 哎呀,回复话题必需登录。