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:
parent
07d530ea91
commit
052506298f
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user