Home › Forums › Backend Issues (wp-admin) › Can\'t Filter Content on the Back End › Reply To: Can\'t Filter Content on the Back End
Hi @dnavarrojr
Thanks for the post.
To change the styles that are used on the acf admin panel/post edit screen, you would need to enqueue your custom stylesheet using the acf/input/admin_enqueue_scripts action.
The code in your functions.php file would look like so:
function my_acf_admin_enqueue_scripts() {
// register style
wp_register_style( 'my-acf-input-css', get_stylesheet_directory_uri() . '/css/my-acf-input.css', false, '1.0.0' );
wp_enqueue_style( 'my-acf-input-css' );
// register script
wp_register_script( 'my-acf-input-js', get_stylesheet_directory_uri() . '/js/my-acf-input.js', false, '1.0.0');
wp_enqueue_script( 'my-acf-input-js' );
}
add_action( 'acf/input/admin_enqueue_scripts', 'my_acf_admin_enqueue_scripts' );
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.