/*
* [event_board]
*/
add_shortcode('last_posts', function ($attrs, $content) {
$posts = get_posts([
'post_type' => 'post',
'posts_per_page' => 2,
]);
ob_start();
if(!empty($posts)) {
?>
foreach($posts as $post) {
$thid = get_post_thumbnail_id($post);
$img = wp_get_attachment_image_src($thid, 'medium');
$link = get_permalink($post);
$title = $post->post_title;
$intro = $post->post_excerpt;
if(empty($intro)) {
$intro = strip_tags($post->post_content);
if(mb_strlen($intro)>128) {
$intro = mb_substr($intro, 0, 128);
$intro = mb_substr($intro, 0, mb_strrpos($intro, ' '));
$intro .= '…';
}
}
?>
if(!empty($img)) { ?>
} ?>
if( empty($img)) { ?> } ?>
}
?>
}
return ob_get_clean();
});
add_shortcode('event_calendar', function ($attrs, $content) {
$iam = isset($_GET['iam']) ? $_GET['iam'] : null;
$calendars = get_option('jsv_calendars');
$calendars->curr_img = wp_get_attachment_image_src($calendars->curr_id, 'large');
$calendars->next_img = wp_get_attachment_image_src($calendars->next_id, 'large');
$posters = get_option('jsv_posters');
$posters->event01_img = $posters->event01_id ? wp_get_attachment_image_src($posters->event01_id, 'large') : null;
$posters->event02_img = $posters->event02_id ? wp_get_attachment_image_src($posters->event02_id, 'large') : null;
$posters->event03_img = $posters->event03_id ? wp_get_attachment_image_src($posters->event03_id, 'large') : null;
$posters->event04_img = $posters->event04_id ? wp_get_attachment_image_src($posters->event04_id, 'large') : null;
$posters->event05_img = $posters->event05_id ? wp_get_attachment_image_src($posters->event05_id, 'large') : null;
$posters->event06_img = $posters->event06_id ? wp_get_attachment_image_src($posters->event06_id, 'large') : null;
ob_start();
/* ?>
Este es el calendario de los eventos de la Asociación.
Las tardes de cuerdas y los Café de Jardín Secreto de los domingos son de 18:00 a 21:00.
Las noches de Jardín y las Fiestas son de 22:30 a 3:00.
La Quedada Joven y el sumDay coffee son de 18:00 a 21:00.
Los otros eventos de sábado tarde son de 18:00 a 20:30.
Ver próximo >
< Ver actual
Si desean más información y/o asistir a cualquiera de nuestros eventos, póngase en contacto con nosotros por aquí o por cualquiera de nuestras redes sociales
?>
if(isset($attrs['posters'])) {
?>
if($posters->event01_img) {
?>
![]()
}
if($posters->event02_img) {
?>
![]()
}
if($posters->event03_img) {
?>
![]()
}
if($posters->event04_img) {
?>
![]()
}
if($posters->event05_img) {
?>
![]()
}
if($posters->event06_img) {
?>
![]()
}
if($posters->event07_img) {
?>
![]()
}
if($posters->event08_img) {
?>
![]()
}
if($posters->event09_img) {
?>
![]()
}
?>
?>