How to convert an HTML element or document into image ?
In this article, I will be able to show you ways to convert Html div to a picture using JQuery. Here, I'm generating an HTML div element on the client-side to im
Read More
Post Type and Custom Post type are used to post Content in Wordpress. its knows as Content Type. There are some post type already exit in wordpress attachments, pages, revisions and navigation menus. All of the post types are stored in the posts database table and differentiated by a column named post_type. Taxonomy are the know as categoty used to group post and custom post types togeather. Diffrent Wordpress Taxonomy are categoty and tags. In Wordpress you can also create custom tags and custom categoty to group the content based on caregoty and tags.
How to Know When Do You Need a Custom Post Type or Taxonomy?
Create Custom post type
Below are the example to create custom post type and custom taxonomy. We have created custom post type portfolio
add_action('init', 'analytics_post_type_register');
function analytics_post_type_register() {
register_post_type(
'portfolio',
array(
'label' => 'Portfolio',
'singular_label' => 'Portfolio',
'public' => true,
'show_ui' => true,
// 'menu_icon' => get_stylesheet_diractory_uri() . '/images/homeoptions-icon.png',
'capability_type' => 'post',
'taxonomies' => array( 'category' ),
'hierarchical' => false,
'rewrite' => true,
'show_in_nav_menus' => false,
'exclude_from_search' => true,
'supports' => array('title', 'editor', 'author','revisions','thumbnail',)
)
);
}
Post your requirment for Wordpress Web Development and you can also hire a wordpress developer on hourly bases
Request a FREE Business Plan.
In this article, I will be able to show you ways to convert Html div to a picture using JQuery. Here, I'm generating an HTML div element on the client-side to im
Read MoreA strong online presence is essential for business success in the digital age. Employing talented web developers and designers guarantees that your business will stand out, whether it is through a dyn
Read MoreSchools are constantly looking for efficient methods to draw in potential students in an increasingly competitive educational environment. Reaching a larger audience is only one aspect of effective le
Read More