This can be done. @TomJNowell does point out the potential for a problem with this solution in the comments to the question but I cannot replicate that problem in any test.
In this example I locked on to the template slug. Therefore for this to work instead of using is_front_page() or similar, create a template called homepage and use it only for the homepage. Then do the same for any other pages you want to have a custom stylesheet.
add_action('enqueue_block_assets', function () {
global $post;
$template = get_page_template_slug($post->ID);
wp_enqueue_style(
$template . '-template-styles',
get_template_directory_uri() . "https://wordpress.stackexchange.com/" . $template . '.css',
);
});
Related Posts:
- How to conditionally enqueue a stylesheet only for a certain page(s)?
- Enqueue styles in new site editor in WordPress 5.9
- Load RTL CSS using block.json for block development
- Remove Open Sans from Twenty Twelve theme
- Enqueue Google Web Fonts Without Messing Up Symbols In URL
- Inbuilt style for jquery-ui-datepicker
- Why is style.css not being enqueued?
- How to enqueue style before style.css
- Are there Gutenberg container blocks?
- What is the correct way to enqueue multiple CSS files?
- show classes as dropdown in guttenberg`s additional css classes input box
- Remove wp_add_inline_style
- Is it possible to enqueue a raw CSS string directly from within a template file?
- Style new block-editor alignfull class without scrollbars or overflow
- Use wp_enqueue_scripts, not wp_print_styles?
- Why isn’t my theme processing SASS?
- What CSS rules are introduced to core blocks through wp-block-styles?
- How to combine multiple CSS files and concatenate JavaScripts if WordPress recommends enqueuing them?
- Adding style sheet to specific page
- How Can I Use A Child Theme Effectively When Parent’s CSS Is Located in a ‘CSS folder’?
- Disable child theme css on certain pages
- Gutenberg Block Editor Match Admin Styles & Frontend Styles
- When enqueing a stylesheet, is it possible to remove the type attribute? [duplicate]
- Load custom css after bootstrap
- Enqueue style for Password Reset page
- The correct way to include JavaScript and CSS in my WordPress Themes
- If I dequeue Gutenberg Stylesheet will that have any effect on WordPress 5.0.1?
- Is it possible to change the path of a css file that is registered through wp_enqueue_style()?
- is it possible to use post-type as part of a css selector in block editor stylesheet?
- Remove WordPress/Gutenberg button styles for ACF blocks
- Relative path instead of absolute for wp_enqueue_script
- get_stylesheet_uri returns wrong path
- Override load-styles.php with admin screen css
- CSS file not registering through add_action
- Relative path in wp_register_style not working
- Custom Admin CSS styles to style media uploader?
- getting url in wp_enqueue_style
- Gutenberg Additional CSS Class without modifying theme?
- How to override Gutenberg admin CSS
- How the Css File is Linked without calling it in header.php?
- Loading different stylesheet on WordPress pages?
- Use wp_add_inline_style to add code to before wp_head?
- why enqueued styles in header.php shows in footer?
- Different css rules for TinyMCE and Gutenberg while using add_editor_style()
- How to insert html/css/javascript code to wordpress plugin
- Adding external stylesheet after ALL other styles
- Different ways to load child theme css
- How to enqueue a random css style?
- Can you edit WP gutenberg block css without a plugin?
- How to override Bootstrap css with my child theme css in wordpress?
- How to stop Gutenberg from outputting inline CSS for specific blocks?
- How to check if a WordPress core block is active in sidebar
- create bootstrap columns inside editor group block
- How to organize priority of plugins CSS files?
- why this media query is not working / not loading when I put it in child theme?
- How do I make header.php use different css for different pages?
- Load CSS in footer, like your can with JS?
- Child theme stylesheet not always overriding “index”
- Child Theme CSS not showing at all
- Faster fonts on mobile
- Display Something in the Header After All Styles are Loaded
- Using PHP Increment and Conditional Statement to Alternate Loop Background
- My CSS suddenly doesn’t load anymore [closed]
- How can I force Dynamic CSS via ACF values to update on page load?
- functions.php – inject inline css from file
- Append style tag in head while shortcode runs
- How can I move my custom css to the very bottom of the head section?
- Add Custom Alignment Option to WordPress Blocks/Gutenberg
- Simple way to add custom class and ids to individual Gutenberg blocks
- CSS getting injected into index from somewhere after theme/custom CSS is loaded, overriding all of my CSS [closed]
- enqueing Javascript and CSS
- Load custom CSS before admin CSS
- Including CSS files in HEAD based on page content
- How would one set or override a Fallback font for characters in second language?
- First element/selector of enqueued CSS file breaks
- The Global Styles missing
- ACF Gut block broke wordpress default style?
- Scroll code block instead of wrapping text
- Default paragraph block styles just for pages NOT for posts?
- Custom CSS in Widget editor (Gutenberg) gets stripped out
- Custom Gutenberg color classes naming convention
- Loading a stylesheet conditionally & verifying CSS
- Dequeue styles with query doesn’t work
- Adding a new block editor color option to a theme
- Stop custom Gutenberg styles taking over other admin bits?
- Save custom option in CSS file
- How to enqueue stylesheets in child-theme functions.php?
- Dequeing Parent Fontawesome Deques Parent Styles
- Why can’t blocks be hidden with jQuery?
- Add inline CSS to login page with wp_add_inline_style
- Gutenberg CSS Issue
- Trying to make an image a circle in Gutenberg
- What is the cleanest way to shrink Gutenberg Blocks to container width?
- Gutenberg Editor: display error with a combination of transform and background-attachment:fixed
- Bootstrap Integtration
- Default Gutenberg CSS on frontend
- Set different css stylesheet for specific pages [duplicate]
- Customizing the CSS for the post/page editor?
- My Child Theme CSS Isn’t Working
- Font size decreases when child theme is created from parent theme?