mirror of
https://github.com/cupcakearmy/liquet.git
synced 2024-10-31 23:54:12 +01:00
43 lines
1.0 KiB
PHP
43 lines
1.0 KiB
PHP
<?php
|
|
|
|
function getNextURL( $next ) {
|
|
$post = get_adjacent_post( true, '', ! $next, 'post_tag' );
|
|
if ( ! $post ) {
|
|
$post = get_adjacent_post( false, '', ! $next, 'post_tag' );
|
|
}
|
|
|
|
return ( $post ? get_permalink( $post->ID ) : get_bloginfo( 'wpurl' ) );
|
|
}
|
|
|
|
function getDates() {
|
|
$created_year = get_the_date( 'Y' );
|
|
$created = get_the_date( ( $created_year == date( 'Y' ) ? 'F j' : null ) );
|
|
$modified_year = get_the_modified_date( 'Y' );
|
|
$modified = get_the_modified_date( ( $modified_year == $created_year ? 'F j' : null ) );
|
|
|
|
return [
|
|
'created' => $created,
|
|
'modified' => $modified,
|
|
'different' => $created != $modified,
|
|
];
|
|
}
|
|
|
|
function getCurrentPageViews() {
|
|
if ( ! is_single() ) {
|
|
return null;
|
|
}
|
|
|
|
$total = (int) do_shortcode( '[wpstatistics stat=pagevisits time=total]' );
|
|
$min = (int) get_option( 'view_min' );
|
|
|
|
if ( $total < $min ) {
|
|
return null;
|
|
}
|
|
|
|
$approximated = round( $total / 1000, 1 );
|
|
?>
|
|
<div id="views">
|
|
<b>~<?= $approximated ?>k readers</b>
|
|
</div>
|
|
<?
|
|
}
|