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

Resolve Error: (59) An unexpected network error occurred

Prerequisites:   Ensure the the target machine has PowerShell Remoting Enabled (as it's Disabled by…

PowerShell: Creating Scheduled Tasks on Remote Servers

This script is deprecated. Here is a better iteration. # scheduledTasksRemote_V0.0.2.ps1# Purpose: to add a…

PowerShell: Raise Domain Forest Functional Level

# Raise Forest Functional Level$forest=Get-ADForest# 2012R2 LevelSet-ADForestMode -Identity $forest -Server $forest.SchemaMaster -ForestMode Windows2012R2Forest -Force# 2016…