Making custom field’s ‘Name’ available in the dropdown list by default in a theme?

your best option is to create a custom meta box with-in your theme and then the user will have it no matter if he typed it once before. // Hook into WordPress add_action( ‘admin_init’, ‘add_custom_metabox’ ); add_action( ‘save_post’, ‘save_custom_intro_image’ ); /** * Add meta box */ function add_custom_metabox() { add_meta_box( ‘custom-metabox’, __( ‘Intro Image’ ), … Read more

Displaying additional User Contact Information

This might help you out if you haven’t found an answer yet. /* BEGIN Custom User Contact Info */ function extra_contact_info($contactmethods) { unset($contactmethods[‘aim’]); unset($contactmethods[‘yim’]); unset($contactmethods[‘jabber’]); $contactmethods[‘facebook’] = ‘Facebook’; $contactmethods[‘twitter’] = ‘Twitter’; $contactmethods[‘linkedin’] = ‘LinkedIn’; return $contactmethods; } add_filter(‘user_contactmethods’, ‘extra_contact_info’); /* END Custom User Contact Info */ Displaying it: <a href=”https://wordpress.stackexchange.com/questions/32505/<?php the_author_meta(“facebook’, $current_author->ID); ?>”></a> http://thomasgriffinmedia.com/blog/2010/09/how-to-add-custom-user-contact-info-in-wordpress/

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)