How to Export and Import Posts and Products in WordPress

How to Export and Import Posts and Products in WordPress

Export Content

  1. Login to the wp dashboard of the source site
  2. Hover on Tools
  3. Click Export
  4. Choose post to export
  5. Should you choose to export posts only, keep in mind that featured images will not be carried over and must be manually imported again on the destination site.
  6. Click on Download Export File

Import Contents

  1. Login to the wp dashboard of the destination site
  2. Hover on Tools
  3. Click on Import
  4. Click on WordPress
  5. Click on Install Now
  6. Run Importer and chose files
  7. If you do not have the WordPress importer installed, you will see a prompt to install the plugin and must do so before continuing
  8. Upload Files

How to Edit & Configure User.ini File WordPress

How to Edit & Configure User.ini File WordPress

; cPanel-generated php ini directives, do not edit
; Manual editing of this file may result in unexpected behavior.
; To make changes to this file, use the cPanel MultiPHP INI Editor (Home >> Software >> MultiPHP INI Editor)
; For more information, read our documentation (https://go.cpanel.net/EA4ModifyINI)

display_errors = Off
max_execution_time = 90
max_input_time = 90
max_input_vars = 1000
memory_limit = 512M
post_max_size = 516M
session.gc_maxlifetime = 1440
session.save_path = “/var/cpanel/php/sessions/ea-php72”
upload_max_filesize = 512M
zlib.output_compression = Off

; cPanel-generated php ini directives, do not edit
; Manual editing of this file may result in unexpected behavior.
; To make changes to this file, use the cPanel MultiPHP INI Editor (Home >> Software >> MultiPHP INI Editor)
; For more information, read our documentation (https://go.cpanel.net/EA4ModifyINI)

display_errors = Off
max_execution_time = 30000
max_input_time = 60000
max_input_vars = 50000
memory_limit = 8192M
post_max_size = 8192M
session.gc_maxlifetime = 1440
session.save_path = “/var/cpanel/php/sessions/ea-php72”
upload_max_filesize = 4096M
zlib.output_compression = Off

How to Edit Index.php File in WordPress

How to Edit Index.php File in WordPress

<?php
/**

  • Front to the WordPress application. This file doesn’t do anything, but loads
  • wp-blog-header.php which does and tells WordPress to load the theme.
    *
  • @package WordPress
    */

/**

  • Tells WordPress to load the WordPress theme and output it.
    *
  • @var bool
    */
    define( ‘WP_USE_THEMES’, true );

/** Loads the WordPress Environment and Template */
require DIR . ‘/wp-blog-header.php’;