Exemple #1
0
?>
<!DOCTYPE html>
<html <?php 
language_attributes();
?>
 class="no-js">
<head>
	<meta charset="<?php 
bloginfo('charset');
?>
">
	<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
	<meta http-equiv="X-UA-Compatible" content="IE=edge">
	
	<!-- Bootplate v<?php 
echo bootplate_info('version');
?>
 -->
	
	<?php 
if (is_singular() && pings_open(get_queried_object())) {
    ?>
	<link rel="pingback" href="<?php 
    bloginfo('pingback_url');
    ?>
">
	<?php 
}
?>
	
	<?php 
Exemple #2
0
    function action_bootplate_credits()
    {
        if (get_theme_mod('bootplate_credit') == 1) {
            echo '
			<div id="bootplate-credit">
				<div class="container text-center">
					<p><small>' . __('Made with', 'bootplate') . ' <span class="sr-only screen-reader-text">' . __('love', 'bootplate') . '</span><span class="bp-heart"></span> ' . __('and', 'bootplate') . ' <a href="' . bootplate_info('branch') . '" target="_blank" rel="nofollow" title="Bootplate v' . bootplate_info('version') . ' by JDM Digital">Bootplate v' . bootplate_info('version') . '</a></small></p>
				</div>
			</div><!--/#bootplate-credit-->
			';
        } else {
            echo '';
        }
    }