Skip to content

Instantly share code, notes, and snippets.

View sitebuilderone's full-sized avatar

SiteBuilderOne sitebuilderone

View GitHub Profile
@sitebuilderone
sitebuilderone / WP-setup.md
Last active December 24, 2018 05:39
WP Setup
@sitebuilderone
sitebuilderone / sb1-shortcodes.php
Created January 8, 2019 05:36
Shotcodes samples
<?php
// Shortcodes
// sitebuilderone.com
// https://codex.wordpress.org/Shortcode_API
// Shortcodes are supposed to return your html, not echo it.
// types: https://speckyboy.com/getting-started-with-wordpress-shortcodes-examples/
function sb1_current_mo_yr() {
@sitebuilderone
sitebuilderone / google-gtm-wp
Last active May 5, 2021 03:54
Add GTM to WP via Code Snippets/functions file
<?php
/**
* Adds Google Tag Manager (GTM) code in <head>
*/
add_action( 'wp_head', 'sb_google_tag_manager',100 );
function sb_google_tag_manager() { ?>
<!-- Google Tag Manager -->
<script>code here ...</script>
@sitebuilderone
sitebuilderone / anton.php
Last active May 5, 2021 03:52
General catch-all snippets
<?php
// General catch-all WP functions
Access token works
?>
@sitebuilderone
sitebuilderone / wp_fun.php
Last active May 5, 2021 06:19
WP fun-functions
<?php
// WP fun-functions
/*
* Custom favicon
*/
function my_favicon()
{ ?>
<link rel="shortcut icon" href="https://www.---.com/your-custom-image.jpg" >
<?php }