1
0
mirror of https://github.com/ulaulaman/eduinaf.git synced 2025-01-07 23:24:03 +01:00
eduinaf/link/link.php
ulaulaman 425facf837
file separato per astroedu et al.
Creazione di un file separato dove conservare il codice per gli shortcode che creano i collegamento alle schede di astroedu e alle news di spacescoop
2018-02-11 17:42:15 +01:00

43 lines
765 B
PHP

<?php
# creazione link esterni con shortcode
# astroedu
add_shortcode('astroedu', 'astroedu');
function astroedu ($atts, $content = null) {
extract(
shortcode_atts(
array(
'lang' => null,
'code' => null,
),
$atts
)
);
$link = '<a href="http://astroedu.iau.org/'.$lang.'/activities/'.$code.'/" target="astroedu">'.$content.'</a>';
return $link;
}
# spacescoop
add_shortcode('spacescoop', 'spacescoop');
function spacescoop ($atts, $content = null) {
extract(
shortcode_atts(
array(
'lang' => null,
'code' => null,
),
$atts
)
);
$link = '<a href="http://www.spacescoop.org/'.$lang.'/scoops/'.$code.'/" target="spacescoop">'.$content.'</a>';
return $link;
}