Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- function dequeue_theme_styles() {
- global $wp_styles;
- foreach( $wp_styles -> registered as $registered ) {
- if( strstr( $registered->src, '/themes/') ) {
- wp_dequeue_style( $registered->handle );
- }
- }
- }
- add_action( 'wp_enqueue_scripts', 'dequeue_theme_styles' );
- ?>
- <!DOCTYPE html>
- <html <?php language_attributes(); ?>>
- <head>
- <meta name="robots" content="noindex,nofollow">
- <meta charset="<?php bloginfo( 'charset' ); ?>" />
- <title><?php wp_title(); ?></title>
- <link rel="profile" href="http://gmpg.org/xfn/11" />
- <?php wp_head(); ?>
- </head>
- <body id="weic-body">
- <?php
- if ( have_posts() ) {?>
- <h2><?php the_title(); ?></h2>
- <?php
- the_content();
- //
- // Post Content here
- //
- } // end if
- ?>
- <?php wp_footer(); ?>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement