mirror of
https://github.com/ulaulaman/eduinafbackupcode.git
synced 2025-01-21 03:26:33 +01:00
80 lines
2.6 KiB
PHP
80 lines
2.6 KiB
PHP
/* Non più utilizzato */
|
|
|
|
# inclusione di grid.css
|
|
# function edu_inaf_to_the_head () {
|
|
# wp_register_style( 'grid', plugins_url( 'eduinaf/incl/grid.css' ) );
|
|
# wp_enqueue_style( 'grid' );
|
|
# }
|
|
#
|
|
#add_action( 'wp_enqueue_scripts', 'edu_inaf_to_the_head' );
|
|
|
|
/* Deprecrato in attesa di capire come realizzare uno stile che eviti errori nella barra laterale */
|
|
|
|
#shortcode per mostrare in una tabella l'elenco degli articoli di uno speciale: da utilizzare in un widget di testo in attesa di creare un widget vero e proprio
|
|
function specialishort($atts) {
|
|
|
|
global $post;
|
|
|
|
extract(
|
|
shortcode_atts(
|
|
array(
|
|
'speciale' => 'null',
|
|
),
|
|
$atts
|
|
)
|
|
);
|
|
|
|
#tutti i termini associati all'eventuale speciale associato al post
|
|
$term_list = wp_get_post_terms($post->ID, 'speciali', array("fields" => "all"));
|
|
#estrazione del nome dello speciale associato al post
|
|
$nomespeciale = $term_list[0]->name;
|
|
|
|
if ($nomespeciale <> $speciale) { $content = null; } else {
|
|
$q = new WP_Query( array( 'speciali' => $speciale, 'posts_per_page'=>-1 ) );
|
|
$header = '<div class="divTable paleBlueRows"><div class="divTableHeading"><div class="divTableRow"><div class="divTableHead"><strong>Speciale '.$speciale.'</strong></div></div></div>';
|
|
|
|
if ( $q->have_posts() ) {
|
|
while ( $q->have_posts() ) {
|
|
$q->the_post();
|
|
$titolo = get_the_title();
|
|
if ( function_exists( 'get_coauthors' ) ) {
|
|
$autori = coauthors_posts_links(", ", " e ", null, null, false);
|
|
} else {
|
|
$autori = the_author();
|
|
}
|
|
$estratto = get_the_excerpt();
|
|
|
|
$content .= '<div class="divTableBody"><div class="divTableRow"><div class="divTableCell"><a href="'.get_the_permalink().'" style="color: #1d71b8;">'.$titolo.'</a></div></div></div>';
|
|
}
|
|
/* ripristino */
|
|
wp_reset_postdata();
|
|
}
|
|
}
|
|
|
|
$content = '<p>'.$header.$content.'</div></p>';
|
|
|
|
return $content;
|
|
}
|
|
add_shortcode( 'specialishort', 'specialishort' );
|
|
|
|
/* snippet cancellati */
|
|
|
|
# header didattica
|
|
|
|
add_shortcode( 'header_didattica', function () {
|
|
|
|
$header = '<header><div class="breadcrumb hidden-xs"><div class="vbreadcrumb" typeof="v:Breadcrumb"><a href="https://edu.inaf.it/" property="v:title" class="home">Home</a> / <a href="https://edu.inaf.it/astrodidattica/" property="v:title">Didattica</a></div></div>';
|
|
$title = '<h1 itemprop="name" style="color:black;">'.get_the_title().'</h1>';
|
|
if ( has_excerpt ()) {
|
|
$excerpt ='<div><em>'.get_the_excerpt().'</em></div>';
|
|
} else {
|
|
$excerpt = '';
|
|
}
|
|
$date = '<div class="breadcrumb hidden-xs"><time class="entry-date">'.get_the_date().'</time></div></header>';
|
|
$out = $header.$title.$date.$excerpt;
|
|
|
|
return $out;
|
|
} );
|
|
|
|
|