Learn about Meta Box and its significance in web development. Discover how to optimize your website using Meta Box for enhanced search engin
seen from United States

seen from United States

seen from United States
seen from Argentina

seen from United States
seen from Japan
seen from Taiwan
seen from Canada
seen from Russia
seen from United States
seen from United States
seen from United States
seen from United States
seen from China

seen from United States

seen from United States

seen from United States
seen from United States

seen from United States

seen from United States
Learn about Meta Box and its significance in web development. Discover how to optimize your website using Meta Box for enhanced search engin

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch ⢠No registration required ⢠HD streaming
Meta Box Group Field - WordPress Meta Box Add-on (Add-ons) - ASC Themes
FREE DOWNLOADS : Meta Box Group Field - WordPress Meta Box Add-on (Add-ons) - ASC Themes Requirements You must have the following plugin to make āMeta Box Group Fieldā work. Works with the latest version 4.3.10 Meta Box What is Meta Box Group Field? Meta Box Group Field is Meta Box Add-on that extends a new field named āgroupā for collectively grouping... Read More
New Post has been published on Devtoolsplus
New Post has been published on http://www.devtoolsplus.com/best-way-to-add-meta-descriptions-without-plugin/
Best way to add meta descriptions without Plugin
Hello learners, How are You? If you want to avoid plugin to add meta descriptions of your WordPress site, You are in right place. In thisĀ web developers resources we will Try to inform you āHow to add meta descriptions without pluginā We donāt need no stinkinā plugin for custom meta descriptions. All you need aĀ custom field named āmetadescriptionā with the desired meta description for each post. Once you have that going, include the following function to your themeāsĀ header.php file (within the <head> section:
<meta name="description" content=" <?php if ((is_home()) || (is_front_page())) { echo ('Your main description goes here'); } elseif(is_category()) { echo category_description(); } elseif(is_tag()) { echo 'Tag archive page for this blog - ' . single_tag_title(); } elseif(is_month()) { echo 'Archive page for this blog - ' . the_time('F, Y'); } else { echo get_post_meta($post->ID, 'metadescription', true); } ?>" />
This function enables you to customize the descriptions for various types of pages, such as the home page, category pages, tag archives, and so on. ForĀ single post-view pages, this function will display the value of the metadescription custom field.
Create Taxonomies and Meta Box
Off course we all known that there's lot tutorial and discussion about taxonomies and meta box, and from that i learned. And now i'm trying to create an album video of youtube for my client. Thats why i use taxonomies for author and album then meta box for Youtube ID. And this code is just for reminder of me because i have kind of sortem memory loss, hehe.
add_action('init', 'Narasumber'); function Narasumber() { register_taxonomy( 'Narasumber', 'post', array( 'hierarchical' => false, 'labels' => array( 'name' => __( 'Narasumber' ), 'singular_name' => __( 'Narasumber' ), 'search_items' => __( 'Search Narasumber' ), 'popular_items' => __( 'Popular Narasumber' ), 'all_items' => __( 'All Narasumber' ), 'edit_item' => __( 'Edit Narasumber' ), 'update_item' => __( 'Update Narasumber' ), 'add_new_item' => __( 'Add Narasumber' ), 'new_item_name' => __( 'New Narasumber' ), 'menu_name' => __( 'Narasumber' ), 'parent_item' => __('Parent Narasumber'), 'parent_item_colon' => __('Parent Narasumber:') ), 'query_var' => true, 'rewrite' => array('slug' => 'narasumber') ) ); }
add_action('init', 'Album'); function Album() { register_taxonomy( 'Album', 'post', array( 'hierarchical' => false, 'labels' => array( 'name' => __( 'Album' ), 'singular_name' => __( 'Album' ), 'search_items' => __( 'Search Album' ), 'popular_items' => __( 'Popular Album' ), 'all_items' => __( 'All Album' ), 'edit_item' => __( 'Edit Album' ), 'update_item' => __( 'Update Album' ), 'add_new_item' => __( 'Add Album' ), 'new_item_name' => __( 'New Album' ), 'menu_name' => __( 'Album' ), 'parent_item' => __('Parent Album'), 'parent_item_colon' => __('Parent Album:') ), 'query_var' => true, 'rewrite' => array('slug' => 'album') ) ); }
add_action("admin_init", "YoutubeID_init"); add_action('save_post', 'save_YoutubeID_info'); function YoutubeID_init(){ add_meta_box("YoutubeID-meta", "Youtube ID", "YoutubeID_meta_options", "post", "normal", "high"); } function YoutubeID_meta_options(){ global $post; $meta_info = get_post_custom($post->ID); $YoutubeID = $meta_info["YoutubeID"][0]; echo '
Youtube ID here, example http://www.youtube.com/watch?v=i-MD3beQPwM :
'; } function save_YoutubeID_info(){ global $post; update_post_meta($post->ID, "YoutubeID", $_POST["YoutubeID"]); }
And this is the preview.
Now letās throw in a bit of JavaScript for some fancy, but highly useful fields to your meta box

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch ⢠No registration required ⢠HD streaming
leverage the WordPress API to define our own custom meta boxes for attaching a document (such as a PDF) to our WordPress pages.
Itās better when developers create a meta box that can show which information is needed and give some explanations to users. In this tutorial, weāll see how to creating a better meta box in WordPress post editing page.
Creating meta boxes is a crucial part of WordPress theme/plugin development. Itās a way to add an appealing editor to the post screen and avoids forcing users to rely on custom fields. If youāve ever created a custom post type in WordPress, youāve probably wanted to add some sort of additional data to it. Sure, you could use custom fields, but thatās ugly. Getting started with custom meta boxes is easy, so letās dive in!