Uname:
Linux webm012.cluster130.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Software:
Apache
PHP version:
8.0.30 [ PHP INFO ] PHP os:
Linux
Server Ip:
145.239.37.162
Your Ip:
216.73.216.190
User:
dreampi (1009562) | Group:
users (100)
Safe Mode:
OFF
Disable Function:
_dyuweyrj4,_dyuweyrj4r,dl
<?php
/**
* The Sticky template to display the sticky posts
*
* Used for index/archive
*
* @package SPIN
* @since SPIN 1.0
*/
$spin_columns = max( 1, min( 3, count( get_option( 'sticky_posts' ) ) ) );
$spin_post_format = get_post_format();
$spin_post_format = empty( $spin_post_format ) ? 'standard' : str_replace( 'post-format-', '', $spin_post_format );
?><div class="column-1_<?php echo esc_attr( $spin_columns ); ?>"><article id="post-<?php the_ID(); ?>"
<?php
post_class( 'post_item post_layout_sticky post_format_' . esc_attr( $spin_post_format ) );
spin_add_blog_animation( $spin_template_args );
?>
>
<?php
if ( is_sticky() && is_home() && ! is_paged() ) {
?>
<span class="post_label label_sticky"></span>
<?php
}
// Featured image
spin_show_post_featured(
array(
'thumb_size' => spin_get_thumb_size( 1 == $spin_columns ? 'big' : ( 2 == $spin_columns ? 'med' : 'avatar' ) ),
)
);
if ( ! in_array( $spin_post_format, array( 'link', 'aside', 'status', 'quote' ) ) ) {
?>
<div class="post_header entry-header">
<?php
// Post title
the_title( sprintf( '<h5 class="post_title entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h6>' );
// Post meta
spin_show_post_meta( apply_filters( 'spin_filter_post_meta_args', array(), 'sticky', $spin_columns ) );
?>
</div><!-- .entry-header -->
<?php
}
?>
</article></div><?php
// div.column-1_X is a inline-block and new lines and spaces after it are forbidden