bp_group_type_hide_quick_edit( type $actions, type $post )

Hide quick edit link.

Description

Parameters

$actions

(type) (Required)

$post

(type) (Required)

Return

(type)

Source

File: bp-groups/bp-groups-admin.php

function bp_group_type_hide_quick_edit( $actions, $post ) {

	if ( empty( $post ) ) {
		global $post;
	}

	if ( bp_get_group_type_post_type() == $post->post_type )
		unset( $actions['inline hide-if-no-js'] );

	return $actions;
}

Changelog

Changelog
Version Description
BuddyBoss 1.0.0 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.