EstudioJuridicoAlmagro_Web/www/wpv_common/shortcodes/team_member.php
david f72df580c3 - Importación inicial
- Ticket 1166 -> Orden de los idiomas ES FR EN RU

git-svn-id: https://192.168.0.254/svn/Proyectos.EstudioJuridicoAlmagro_Web/trunk@2 c22fe52d-42d7-ba4f-95f7-33effcf65713
2013-02-27 15:39:05 +00:00

26 lines
492 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');