Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Remove the post section from the My Account */
- add_filter('wpuf_my_account_tab_links', 'remove_posts_link');
- function remove_posts_link($tabs){
- if(isset($tabs['posts'])) {
- unset($tabs['posts']);
- }
- return $tabs;
- }
- add_filter('wpuf_account_sections', 'wpuf_get_account_sections_custom' );
- function wpuf_get_account_sections_custom($account_sections){
- foreach ($account_sections as $key=>$section) {
- if(isset($section['slug']) && $section['slug'] == 'posts') {
- unset($account_sections[$key]);
- }
- }
- return $account_sections;
- }
Advertisement
Add Comment
Please, Sign In to add comment