Customize Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Docs

Using code snippets in WordPress

The easiest way to add custom code snippets to your WordPress website is by combing them all into a custom plugin, or by using a code snippet plugin like Code Snippets or similar.

Creating a custom WordPress plugin to add custom code

A custom plugin can be created by adding a new file in the plugins directory “/wp-content/plugins” called “importwp-custom.php”, and add the following code to the top of that file.

<?php

/**
 * Plugin Name: Import WP - Custom code
 * Plugin URI: https://importwp.com
 * Description: 
 * Version: 1.0.0 
 * Network: True
 */

 // TODO: Add your custom code here

With the plugin header added to your file, a new plugin should then be visible when browsing the installed plugins page in your WordPress admin area named “Import WP – Custom code”, where it can be activated.

Now you can append any custom code snippets this file after the previously added plugin header code.