Venugopal Clarion
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Fixing WordPress
In reply to: register new custom post type in an external fileCreate a new file in your theme folder and include file name in functions.php like below
require_once('filename.php');Forum: Fixing WordPress
In reply to: Portfolio sectionsMay be below link will help you
Forum: Fixing WordPress
In reply to: mobile siteIt seems site showing fine, what is the issue?
Forum: Localhost Installs
In reply to: WordPress importer permalinks is not synchronizedWordPress automatically convert Post title into test-title only its wont add like this test/title, i think you changed some settings in permalinks page
When you import xml in to wordpress it will take only Titles, content..etc its wont take total link or permalink
Forum: Fixing WordPress
In reply to: Hook for Permalinks Settings PageUsing below hook add the information on Permalinks settings page
add_action( 'admin_init', 'custom_inform_permalink' ); function custom_inform_permalink(){ add_settings_section( 'vv_setting_section', __( 'This is heading'), 'testing_function','permalink'); } function testing_function(){ echo "This new information in permalink page"; }Add your information it will display on Permalinks setting page
Viewing 5 replies - 1 through 5 (of 5 total)