1
0
mirror of https://github.com/ulaulaman/eduinaf.git synced 2024-12-16 17:08:37 +01:00

aggiunto shortcode per gli estratti da Sapere

This commit is contained in:
ulaulaman 2018-02-12 14:09:40 +01:00 committed by GitHub
parent 07d530ea91
commit 052506298f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,3 +40,28 @@ add_shortcode('spacescoop', 'spacescoop');
return $link;
}
# Sapere
add_shortcode('sapere', 'sapere');
function sapere ($atts, $content = null) {
extract(
shortcode_atts(
array(
'url' => null,
'num' => null,
'data' => null,
'doi' => null,
),
$atts
)
);
if ( $doi <> null )
{$link = '<p><em>Estratto dall\'articolo "<a href="'.$url.' target="sapere">'.$content.'</a>" uscito su Sapere n.'.$num.' di '.$data.'. doi:<a href="https://dx.doi.org/'.$doi.'" target="doi">'.$doi.'</a></em></p>';}
else
{$link = '<p><em>Estratto dall\'articolo "<a href="'.$url.' target="sapere">'.$content.'</a>" uscito su Sapere n.'.$num.' di '.$data.'</em></p>';}
return $link;
}