File: /var/www/lcc.kaunokolegija.lt/wp-content/plugins/codepress-admin-columns/classes/ThirdParty/ACF.php
<?php
namespace AC\ThirdParty;
use AC\Registerable;
class ACF implements Registerable {
public function register(): void
{
add_filter( 'ac/post_types', [ $this, 'remove_acf_field_group' ] );
}
/**
* Fix which remove the Advanced Custom Fields Type (acf) from the admin columns settings page
*
* @param $post_types
*
* @return array Post Types
* @since 2.0
*/
function remove_acf_field_group( $post_types ) {
if ( class_exists( 'Acf', false ) ) {
if ( isset( $post_types['acf'] ) ) {
unset( $post_types['acf'] );
}
if ( isset( $post_types['acf-field-group'] ) ) {
unset( $post_types['acf-field-group'] );
}
}
return $post_types;
}
}