>
Download This Plugin | |
Download Elegant Themes | |
Name | Theme Blvd Layouts to Posts |
Version | 1.0.3 |
Author | Jason Bobich |
Rating | 0 |
Last updated | 2014-12-23 01:38:00 |
Downloads |
1863
|
Download Plugins Speed Test plugin for Wordpress |
Home page PageSpeed score has been degraded by 0%, while Post page PageSpeed score has been degraded by 0%
Theme Blvd Layouts to Posts plugin added 4 bytes of resources to the Home page and 8 bytes of resources to the sample Post page.
Theme Blvd Layouts to Posts plugin added 0 new host(s) to the Home page and 0 new host(s) to the sample Post page.
Great! Theme Blvd Layouts to Posts plugin ads no tables to your Wordpress blog database.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.
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' );