functions.php 394 B

123456789101112131415
  1. <?php
  2. if ( ! defined( 'ABSPATH' ) ) {
  3. exit; // disable direct access
  4. }
  5. /**
  6. * Append integration CSS
  7. */
  8. function megamenu_twentytwelve_style($scss) {
  9. $path = trailingslashit( plugin_dir_path( __FILE__ ) ) . 'style.scss';
  10. $contents = file_get_contents( $path );
  11. return $scss . $contents;
  12. }
  13. add_filter( 'megamenu_load_scss_file_contents', 'megamenu_twentytwelve_style', 9999 );