Posted On April 18, 2019

Methods to Embed JavaScript Codes into WordPress

kimconnect 0 comments
blog.KimConnect.com >> Codes >> Methods to Embed JavaScript Codes into WordPress
  1. Insert Headers and Footers Plugin – automatically apply script site wide
  2. Shortcoder Plugin – make script available site wide, but apply only when called within pages
  3. Code Embed – similar to Shortcoder. Create Custom Fields with snippets that can be inserted into individual posts
  4. Manually add codes into functions.php, header.php, and footer.php

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

List Autorun Services

# $cred = get-Credential -credential kdoan-a $Username = 'kimconnect\kim-Admin $Password = 'PASSWORD' $pass = ConvertTo-SecureString…

How To Upgrade NextCloud 22.1.1 to 22.2.0 When Deployed with Kubernetes & Helm

Step 1: Navigate to nextcloud > html > edit version.php <?php $OC_Version = array(22,1,1,2); $OC_VersionString…

PowerShell: How to Quickly Ping a Target

Method 1: Legacy ping command # Legacy method that works without any fusses $pingResult=ping google.com…