Skip to content

Instantly share code, notes, and snippets.

View vjui388's full-sized avatar
๐Ÿ˜‡

VJ_UI388 vjui388

๐Ÿ˜‡
View GitHub Profile
@vjui388
vjui388 / meta-tags.md
Created November 21, 2018 15:48 — forked from lancejpollard/meta-tags.md
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta name="keywords" content="your, tags"/>
<meta name="description" content="150 words"/>
<meta name="subject" content="your website's subject">
<meta name="copyright"content="company name">
<meta name="language" content="ES">
@vjui388
vjui388 / functions.php
Created August 13, 2018 13:37 — forked from pixeline/functions.php
Generates metatags for wordpress
<?php
add_filter( 'customer', 'return_customer_info', 10, 1 );
function return_customer_info( $arg = '' ) {
/*
usage: echo apply_filters('customer', 'facebook');
*/
$customer = array(
'name' => 'Customer Name',
'facebook'=> 'https://www.facebook.com/customer',