git-svn-id: https://192.168.0.254/svn/Proyectos.EstudioJuridicoAlmagro_Web/trunk@3 c22fe52d-42d7-ba4f-95f7-33effcf65713
26 lines
517 B
PHP
26 lines
517 B
PHP
<?php
|
|
|
|
/*
|
|
* team_member shortcode
|
|
*/
|
|
|
|
function wpv_shortcode_team_member($atts, $content = null, $code) {
|
|
global $wp_filter;
|
|
|
|
$the_content_filter_backup = $wp_filter['the_content'];
|
|
extract(shortcode_atts(array(
|
|
'name' => '',
|
|
'position' => '',
|
|
'phone' => '',
|
|
'email' => '',
|
|
'picture' => '',
|
|
), $atts));
|
|
|
|
ob_start();
|
|
|
|
include WPV_SHORTCODE_TEMPLATES . 'team_member.php';
|
|
|
|
return '[raw]'.ob_get_clean().'[/raw]';
|
|
}
|
|
add_shortcode('team_member','wpv_shortcode_team_member');
|