Пример #1
0
    public static function schema_org_head_tags()
    {
        // Take meta tag designations, and apply them to the HTML elements
        $tags = PLS_Meta_Tags::determine_appropriate_tags();
        ob_start();
        ?>
			<!-- Schema.org Tags -->
			<meta itemprop="name" content="<?php 
        echo $tags['title'];
        ?>
">
			<meta itemprop="email" content="<?php 
        echo $tags['email'];
        ?>
">
			<meta itemprop="address" content="<?php 
        echo $tags['address'];
        ?>
">
			<meta itemprop="description" content="<?php 
        echo $tags['description'];
        ?>
">
			<meta itemprop="url" content="<?php 
        echo $tags['url'];
        ?>
">
		<?php 
        $tags_html = ob_get_clean();
        echo $tags_html;
    }