HeJian WordPress Theme FAQ
How to install HeJian WordPress Theme
- 1. unzip and upload the theme into WordPress’s wp-content/themes directory
- 2. Go go wp-admin -> Design -> Themes, and select is as the current theme
- 3. Click wp-admin -> Appearance -> Restore Widgets to restore the widgets settings provided by the theme
How to setup the widgets in specified positions
My template support a wide variety of widget positions and variations. All widgets are fully collapsible. If there is no widget published in a certain position, this widget position will contract and dissappear:

You can setup the widgets at wp-admin -> Design -> Widgets
How to change the logo
Just edit the widget in logo position. And you can drag the text widget into logo position if there has no in that position.
How to write php code in text widget
Install the php-exec plugin. This plugin will allow you write php code in post, page, and widget.
How to setup the main navigation menu
1. Decide where you want to put the main navigation menu. Normally you can put the menu into “nav” position, also you can put the menu into “header” or “left” position.
2. Decide what’s the menu items you want to display in the navigation menu.
Use pages as the menu items
Just drag the “Pages” widget into the “nav” position.
Use categories as the menu items
Just drag the “Cagetories” widget into the “nav” position.
Create a customized menu items
1. Drag the “Text” widget into the “nav” position.
2. Edit the content of this widget, here is an example:
<ul>
<li><a href="<?php bloginfo('home'); ?>">Home</a></li>
<li><a href="<?php echo get_permalink(1); ?>">Service</a></li>
<li><a href="<?php echo get_permalink(2); ?>">About</a></li>
<li><a href="<?php echo get_permalink(3); ?>">Contact</a></li>
</ul>
What’s the widgets.data file
There has a “widgets.data” file in the theme directory, it’s the widgets setting backup file. If you click “Appearance -> Backup Widgets”, then the widgets setting will backup into this file. If you click “Appearance -> Restore Widgets”, then the widgets setting will restored from this file.