Theme Blvd Layouts to Posts

Theme Blvd Layouts to Posts Install Statistics

0
100%
Today: 0 Yesterday: 0 All-time: 4,859 downloads
Theme Blvd Layouts to Posts Icon

Try plugin: Theme Blvd Layouts to Posts

We'll create fresh WordPress site with Theme Blvd Layouts to Posts installed. You have 20 minutes to test the plugin after that site we'll be deleted.

Takes ~10 seconds to install.

About Theme Blvd Layouts to Posts

This plugin extends the Theme Blvd Layout Builder so you can assign your custom templates to standard posts and custom post types.

0


0


0


0


0

updated: 6 years ago
since: 12 years ago
author: Jason Bobich

Description

This plugin extends the Theme Blvd Layout Builder so you can assign your custom templates to standard posts and custom post types.

Note: You must have a Theme Blvd theme installed with the Layout Builder for this plugin to do anything.

Customization

This is a pretty simple plugin, however it will add the custom template selection meta box to all post types automatically. If you’d like to exlude the meta box from certain post types, you can unset those post types from the array attached to the filter themeblvd_ltp_post_types.

function my_ltp_post_types( $post_types ) {
    unset( $post_types['post_type_to_remove'] );
    return $post_types;
}
add_filter( 'themeblvd_ltp_post_types', 'my_ltp_post_types' );