A
A
AbsolvoTe2018-01-27 08:59:51
WordPress
AbsolvoTe, 2018-01-27 08:59:51

Wordpress - How to display styles at the end of a document?

Hello!
How to display styles before ?</body>

wp_enqueue_style( 'theme-style', get_stylesheet_uri() );

wp_enqueue_style( 'theme-my-css', get_template_directory_uri() . '/css/main.min.css' );

Answer the question

In order to leave comments, you need to log in

1 answer(s)
M
Mike, 2018-01-27
@AbsolvoTe

function add_custom_footer_styles() {
    wp_enqueue_style( 'theme-style', get_stylesheet_uri() );
   wp_enqueue_style( 'theme-my-css', get_template_directory_uri() . '/css/main.min.css' );
};
add_action( 'wp_footer', 'add_custom_footer_styles', 100 );

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question