| 1 |
<?php |
| 2 |
add_action( 'vc_load_default_templates_action','phlox_vc_page_templates' ); // Hook in |
| 3 |
function phlox_vc_page_templates() { |
| 4 |
$data = array(); // Create new array |
| 5 |
$data['name'] = __( 'Phlox Blog template', 'Phlox' ); // Assign name for your custom template |
| 6 |
$data['weight'] = 0; // Weight of your template in the template list |
| 7 |
// $data['image_path'] = preg_replace( '/\s/', '%20', plugins_url( 'images/custom_template_thumbnail.jpg', __FILE__ ) ); // Always use preg replace to be sure that "space" will not break logic. Thumbnail should have this dimensions: 114x154px |
| 8 |
$data['image_path'] = preg_replace( '/\s/', '%20', plugins_url( 'images/temp1.jpeg', __FILE__ ) ); // Always use preg replace to be sure that "space" will not break logic. Thumbnail should have this dimensions: 114x154px |
| 9 |
// $data['custom_class'] = 'custom_template_for_vc_custom_template'; // CSS class name |
| 10 |
$data['content'] = '[vc_row][vc_column][aux_quote]Proin eget tortor risus. Curabitur aliquet quam id dui posuere blandit. Cras ultricies ligula sed magna dictum porta. Nulla quis lorem ut libero malesuada feugiat. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Praesent sapien ma[/aux_quote][/vc_column][/vc_row][vc_row][vc_column width="1/2"][aux_contact_box title="kamtar shenasim" email="jame@bade.ghese" telephone="021.54868745" address="25 Ave" extra_classes="customm"][/vc_column][vc_column width="1/2"][aux_search title="shipping them out"][aux_divider style=""][aux_button label="sabzeie khake ma" icon="fa fa-pied-piper"][/vc_column][/vc_row][vc_row][vc_column][aux_recent_posts_land_style title="oooW" num="4"][/vc_column][/vc_row]'; |
| 11 |
|
| 12 |
vc_add_default_templates( $data ); |
| 13 |
|
| 14 |
$template = array(); |
| 15 |
$template['name'] = __( 'Phlox contt template', 'Phlox' ); |
| 16 |
$data['image_path'] = preg_replace( '/\s/', '%20', plugins_url( 'images/temp2.jpg', __FILE__ ) ); |
| 17 |
|
| 18 |
// $template['custom_class'] = 'custom_template_for_vc_custom_template'; // CSS class name |
| 19 |
$template['content'] = '[vc_row][vc_column][aux_quote type=""]Proin eget tortor risus. Curabitur aliquet quam id dui posuere blandit. Cras ultricies ligula sed magna dictum porta. Nulla quis lorem ut libero malesuada feugiat. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Praesent sapien ma[/aux_quote][/vc_column][/vc_row][vc_row][vc_column width="1/2"][aux_gallery layout="masonry" columns="1" tablet_cnum="inherit" phone_cnum="1" link="none" include="81,71,109,153,155,147,42,6"][/vc_column][vc_column width="1/2"][aux_search title="shipping them out"][aux_divider style=""][aux_button label="sabzeie khake ma" border="" style="" icon="fa fa-pied-piper" color_name=""][/vc_column][/vc_row][vc_row][vc_column][aux_recent_posts_land_style title="oooW" num="4"][/vc_column][/vc_row]'; |
| 20 |
|
| 21 |
vc_add_default_templates( $template ); |
| 22 |
} |
| 23 |
|
| 24 |
// @TODO: VC page template sample of reordering |
| 25 |
// add_filter( 'vc_load_default_templates', 'my_custom_template_at_first_position' ); // Hook in |
| 26 |
// function my_custom_template_at_first_position( $data ) { |
| 27 |
// $template = array(); |
| 28 |
// $template['name'] = __( 'Phlox contt template', 'Phlox' ); |
| 29 |
// $data['image_path'] = preg_replace( '/\s/', '%20', plugins_url( 'images/temp2.jpg', __FILE__ ) ); |
| 30 |
|
| 31 |
// // $template['custom_class'] = 'custom_template_for_vc_custom_template'; // CSS class name |
| 32 |
// $template['content'] = '[vc_row][vc_column][aux_quote type=""]Proin eget tortor risus. Curabitur aliquet quam id dui posuere blandit. Cras ultricies ligula sed magna dictum porta. Nulla quis lorem ut libero malesuada feugiat. Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Praesent sapien ma[/aux_quote][/vc_column][/vc_row][vc_row][vc_column width="1/2"][aux_gallery layout="masonry" columns="1" tablet_cnum="inherit" phone_cnum="1" link="none" include="81,71,109,153,155,147,42,6"][/vc_column][vc_column width="1/2"][aux_search title="shipping them out"][aux_divider style=""][aux_button label="sabzeie khake ma" border="" style="" icon="fa fa-pied-piper" color_name=""][/vc_column][/vc_row][vc_row][vc_column][aux_recent_posts_land_style title="oooW" num="4"][/vc_column][/vc_row]'; |
| 33 |
// array_unshift( $data, $template ); |
| 34 |
|
| 35 |
|
| 36 |
|
| 37 |
// return $data; |
| 38 |
// } |
| 39 |
|