Beginner question: Accessing functions.php through admin web interface in order to import custom post types?

It is sometimes possible to edit theme files, including functions.php, inside wp-admin. Many hosts and devs disable this feature since it can cause security issues as well as allow you to break the site. So if you can access the file via FTP, that’s generally the recommended method. If you don’t see “Appearance > Editor” … Read more

Easy way to import a post from Word?

There are 3 ways you can import content from Word: Paste from Word There’s a button in the editor that allows you to paste content directly from Word. This removes the special formatting Word uses to lay content out on the page and will make things work well on your site. (The button is in … Read more

How to Import Categories with Descriptions from a CSV File?

Very simple plugin to achieve this. Runs only on activation, so, if there are 5 CSV files, the plugin must be activated/deactivated five times. File: /wp-content/plugins/create-cats-from-csv/create-cats-from-csv.php <?php /* Plugin Name: Insert CSV Categories Version: 1.0 Description: Reads a CSV file on plugin activation and insert the Categories/Description/Parent into WordPress as defined in the CSV Plugin … Read more

How to import a TypePad blog including all media?

The export file isn’t supposed to contain actual images–just references to them. When you do the import (as @Philip directed), it’s important that the images still be available via http in those original locations. WordPress downloads them and adds them to the local media library during the import process.

Convert a static website to a WordPress theme and import all existing content

WordPress has a perfect wrapper for HTML > Theme conversion: The theme itself. All information can be found in the Codex page. It is enough to add a folder to your wp-content/themes directory (or whatever directory you registered in addition to that), and add the following files functions.php style.css index.php header.php to your custom themename … Read more