How enqueue CSS out of theme folder?

You can use content_url() to get a URL to the wp-content folder: add_action( ‘init’, function() { wp_enqueue_style( ‘my-tag’, content_url( ‘cssfile.css’ ) ); }); See https://developer.wordpress.org/reference/functions/content_url/

Remove / Disable default custom.css?ver=1.0.0

Here’s how you could use the wp_dequeue_style function in a WordPress hook to unenqueue the custom-css stylesheet: function wpsx411806_unenqueue_custom_css() { wp_dequeue_style( ‘custom-css’ ); } add_action( ‘wp_enqueue_scripts’, ‘wpsx411806_unenqueue_custom_css’ ); In this example, the wpsx411806_unenqueue_custom_css function uses the wp_dequeue_style function to unenqueue the custom-css stylesheet. The function is then registered as a callback for the wp_enqueue_scripts hook.

Insert a group block inside a list item

My solution is to use CSS to simulate numbers (or bullets) on a group (which is a <div>). So I first created groups within groups, and then I added CSS class on the topmost group: .numbered-list { counter-reset: item; } And for each item, the group has this class: .numbered-list-item { } .numbered-list-item:before { content: … Read more