Skip to content

Instantly share code, notes, and snippets.

View banyerhan's full-sized avatar
🎯
Focusing

NightFury banyerhan

🎯
Focusing
View GitHub Profile
@banyerhan
banyerhan / functions.php
Created August 7, 2018 04:33 — forked from taninbkk/functions.php
Polylang Shortcode
// Polylang Shortcode - https://wordpress.org/plugins/polylang/
// Add this code in your functions.php
// Put shortcode [polylang] to post/page for display flags
function polylang_shortcode() {
ob_start();
pll_the_languages(array('show_flags'=>1,'show_names'=>0));
$flags = ob_get_clean();
return $flags;
}
@banyerhan
banyerhan / functions.php
Created September 9, 2020 07:44 — forked from nayemDevs/functions.php
Add new field on vendor product upload form in Dokan
<?php
/*
* Adding extra field on New product popup/without popup form
*/
add_action( 'dokan_new_product_after_product_tags','new_product_field',10 );
function new_product_field(){ ?>
@banyerhan
banyerhan / meta-tags.md
Created October 22, 2020 10:42 — 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">