http://domain.com/custom_pageのような URL で buddypress のカスタム ページを作成することはできますか? Google を検索していくつかの回答を見つけましたが、カスタム ページは作成されません。ブログの1つで見つけたコードがここにあります。
define('BP_FUN_SLUG','楽しい');
関数 bp_show_fun_page() {
global $bp, $current_blog;
if ( $bp->current_component == BP_FUN_SLUG && $bp->current_action == '' ) {
// The first variable here must match the name of your template file below
bp_core_load_template( 'fun', true );
}
}
add_action( 'wp', 'bp_show_fun_page', 2 );
しかし、このコードは機能しません...これを行う方法を知っている人はいますか? ありがとう