Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: How Can I Append a ‘Random Article’ Link to the Visit Menu?


r-a-y
Keymaster

@r-a-y

Hook into the “bp_adminbar_random_menu” action.

function my_random_article() {
echo 'YOUR LINK';
}
add_action( 'bp_adminbar_random_menu', 'my_random_article' );

Add to your theme’s functions.php.

Skip to toolbar