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

PowerShell: check whether the current user is a member of Domain Admins

# short snippet to check whether the currently login user is a domain admin$CurrentUser =…

PowerShell: Disable Microsoft Dynamics CRM Organization

# disableCrmOrganization.ps1 $orgname='testOrg' $domain='kimconnect.com' $dnsServer='10.10.10.10' $credentials=@{ 'kimconnect\crmAdmin'='password'; 'kimconnect\devAdmin'='password'; } $usernamePrefix='kimconnect\crm' $servernameSuffix='-app01' $ipDictionary=@{ 'dev01'='1.1.1.1'; 'prod01'='2.2.2.2'; }…

PowerShell: How to Quickly Ping a Target

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