fixing the rest of the get_avatars to comicpress_get_avatar and edit to graphical-navigation.php where trying to Last ›› put the syntax into the text arrays however htmlspecialchars needs to be used (note to john)
Signed-off-by: Philip M. Hofer (Frumph) <frumph_dragon@yahoo.com>
This commit is contained in:
parent
f97def972e
commit
89652293ff
|
@ -61,7 +61,7 @@
|
|||
<div class="post-comic">
|
||||
<div class="post-info">
|
||||
<?php if ($enable_comic_post_author_gravatar == 'yes') { ?>
|
||||
<div class="post-author-gravatar"><?php echo str_replace("alt='", "alt='".get_the_author_meta('display_name')."' title='".get_the_author_meta('display_name'),get_avatar(get_the_author_meta('email'), 64)); ?></div>
|
||||
<div class="post-author-gravatar"><?php echo str_replace("alt='", "alt='".get_the_author_meta('display_name')."' title='".get_the_author_meta('display_name'),comicpress_get_avatar(get_the_author_meta('email'), 64)); ?></div>
|
||||
<?php } ?>
|
||||
<?php if (function_exists('comicpress_show_mood_in_post')) comicpress_show_mood_in_post(); ?>
|
||||
<?php if ($enable_comic_post_calendar == 'yes') { ?>
|
||||
|
@ -96,7 +96,7 @@
|
|||
<div <?php post_class(); ?>>
|
||||
<div class="post-info">
|
||||
<?php if ($enable_post_author_gravatar == 'yes') { ?>
|
||||
<div class="post-author-gravatar"><?php echo str_replace("alt='", "alt='".get_the_author_meta('display_name')."' title='".get_the_author_meta('display_name'),get_avatar(get_the_author_meta('email'), 64)); ?></div>
|
||||
<div class="post-author-gravatar"><?php echo str_replace("alt='", "alt='".get_the_author_meta('display_name')."' title='".get_the_author_meta('display_name'),comicpress_get_avatar(get_the_author_meta('email'), 64)); ?></div>
|
||||
<?php } ?>
|
||||
<?php if (function_exists('comicpress_show_mood_in_post')) comicpress_show_mood_in_post(); ?>
|
||||
<?php if ($enable_post_calendar == 'yes') { ?>
|
||||
|
|
|
@ -37,7 +37,7 @@ function comicpress_avatar() {
|
|||
echo '<a href="' . $url . '" rel="external nofollow" title="' . wp_specialchars(get_comment_author(), 1) . '">';
|
||||
$id_or_email = get_comment_author_email();
|
||||
if (empty($id_or_email)) $id_or_email = get_comment_author();
|
||||
if(function_exists('get_avatar') && $comment_type != 'pingback' && $comment_type != 'trackback' ) {
|
||||
if(function_exists('comicpress_get_avatar') && $comment_type != 'pingback' && $comment_type != 'trackback' ) {
|
||||
echo str_replace("alt='", "alt='".wp_specialchars(get_comment_author(), 1)."' title='".wp_specialchars(get_comment_author(), 1), comicpress_get_avatar($id_or_email, 64));
|
||||
} else {
|
||||
if ($comment_type == 'pingback' || $comment_type == 'trackback') {
|
||||
|
|
|
@ -23,7 +23,7 @@ function display_comic_post() {
|
|||
<div class="post-comic">
|
||||
<div class="post-info">
|
||||
<?php if ($enable_comic_post_author_gravatar == 'yes') { ?>
|
||||
<div class="post-author-gravatar"><?php echo str_replace("alt='", "alt='".get_the_author_meta('display_name')."' title='".get_the_author_meta('display_name'),get_avatar(get_the_author_meta('email'), 64)); ?></div>
|
||||
<div class="post-author-gravatar"><?php echo str_replace("alt='", "alt='".get_the_author_meta('display_name')."' title='".get_the_author_meta('display_name'),comicpress_get_avatar(get_the_author_meta('email'), 64)); ?></div>
|
||||
<?php } ?>
|
||||
<?php if (function_exists('comicpress_show_mood_in_post')) comicpress_show_mood_in_post(); ?>
|
||||
<?php if ($enable_comic_post_calendar == 'yes') { ?>
|
||||
|
|
|
@ -3,16 +3,18 @@ Author: Tyler Martin
|
|||
Style: Default
|
||||
*/
|
||||
#comic_navi_wrapper {
|
||||
padding: 5px 0 10px 0;
|
||||
width: 100%;
|
||||
height: 25px;
|
||||
background: black;
|
||||
}
|
||||
|
||||
#comic_navi {
|
||||
height: 25px;
|
||||
background: black;
|
||||
display: table;
|
||||
border-collapse: collapse;
|
||||
margin: 0 auto;
|
||||
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
list-style: none;
|
||||
float: left;
|
||||
line-height: 25px;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.navi-comictitle {
|
||||
|
@ -22,7 +24,16 @@ Style: Default
|
|||
.navi {
|
||||
}
|
||||
|
||||
.navi:hover {
|
||||
.navi a {
|
||||
padding: 0px 10px 0 10px;
|
||||
display: block;
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.navi a:hover {
|
||||
color: #000;
|
||||
background: #f00;
|
||||
}
|
||||
|
||||
.navi-first {
|
||||
|
|
|
@ -21,7 +21,7 @@ $count = $tmp_search->post_count;
|
|||
<div class="post-comic">
|
||||
<div class="post-info">
|
||||
<?php if ($enable_comic_post_author_gravatar == 'yes') { ?>
|
||||
<div class="post-author-gravatar"><?php echo str_replace("alt='", "alt='".get_the_author_meta('display_name')."' title='".get_the_author_meta('display_name'),get_avatar(get_the_author_meta('email'), 64)); ?></div>
|
||||
<div class="post-author-gravatar"><?php echo str_replace("alt='", "alt='".get_the_author_meta('display_name')."' title='".get_the_author_meta('display_name'),comicpress_get_avatar(get_the_author_meta('email'), 64)); ?></div>
|
||||
<?php } ?>
|
||||
<?php if (function_exists('comicpress_show_mood_in_post')) comicpress_show_mood_in_post(); ?>
|
||||
<?php if ($enable_comic_post_calendar == 'yes') { ?>
|
||||
|
@ -54,7 +54,7 @@ $count = $tmp_search->post_count;
|
|||
<div <?php post_class(); ?>>
|
||||
<div class="post-info">
|
||||
<?php if ($enable_post_author_gravatar == 'yes') { ?>
|
||||
<div class="post-author-gravatar"><?php echo str_replace("alt='", "alt='".get_the_author_meta('display_name')."' title='".get_the_author_meta('display_name'),get_avatar(get_the_author_meta('email'), 64)); ?></div>
|
||||
<div class="post-author-gravatar"><?php echo str_replace("alt='", "alt='".get_the_author_meta('display_name')."' title='".get_the_author_meta('display_name'),comicpress_get_avatar(get_the_author_meta('email'), 64)); ?></div>
|
||||
<?php } ?>
|
||||
<?php if (function_exists('comicpress_show_mood_in_post')) comicpress_show_mood_in_post(); ?>
|
||||
<?php if ($enable_post_calendar == 'yes') { ?>
|
||||
|
|
|
@ -23,7 +23,7 @@ $count = $tmp_search->post_count;
|
|||
<div class="post-comic">
|
||||
<div class="post-info">
|
||||
<?php if ($enable_comic_post_author_gravatar == 'yes') { ?>
|
||||
<div class="post-author-gravatar"><?php echo str_replace("alt='", "alt='".get_the_author_meta('display_name')."' title='".get_the_author_meta('display_name'),get_avatar(get_the_author_meta('email'), 64)); ?></div>
|
||||
<div class="post-author-gravatar"><?php echo str_replace("alt='", "alt='".get_the_author_meta('display_name')."' title='".get_the_author_meta('display_name'),comicpress_get_avatar(get_the_author_meta('email'), 64)); ?></div>
|
||||
<?php } ?>
|
||||
<?php if (function_exists('comicpress_show_mood_in_post')) comicpress_show_mood_in_post(); ?>
|
||||
<?php if ($enable_comic_post_calendar == 'yes') { ?>
|
||||
|
@ -62,7 +62,7 @@ $count = $tmp_search->post_count;
|
|||
<div <?php post_class(); ?>>
|
||||
<div class="post-info">
|
||||
<?php if ($enable_post_author_gravatar == 'yes') { ?>
|
||||
<div class="post-author-gravatar"><?php echo str_replace("alt='", "alt='".get_the_author_meta('display_name')."' title='".get_the_author_meta('display_name'),get_avatar(get_the_author_meta('email'), 64)); ?></div>
|
||||
<div class="post-author-gravatar"><?php echo str_replace("alt='", "alt='".get_the_author_meta('display_name')."' title='".get_the_author_meta('display_name'),comicpress_get_avatar(get_the_author_meta('email'), 64)); ?></div>
|
||||
<?php } ?>
|
||||
<?php if (function_exists('comicpress_show_mood_in_post')) comicpress_show_mood_in_post(); ?>
|
||||
<?php if ($enable_post_calendar == 'yes') { ?>
|
||||
|
|
|
@ -270,27 +270,27 @@ class WidgetComicPressGraphicalStorylineNavigation extends WP_Widget {
|
|||
);
|
||||
|
||||
$title_defaults = array(
|
||||
'first_title' => __('First', 'comicpress'),
|
||||
'last_title' => __('Latest', 'comicpress'),
|
||||
'first_title' => __('‹‹ First', 'comicpress'),
|
||||
'last_title' => __('Last ››', 'comicpress'),
|
||||
'story_prev_title' => __('Chapter', 'comicpress'),
|
||||
'story_next_title' => __('Chapter', 'comicpress'),
|
||||
'story_prev_in_title' => __('In Chapter', 'comicpress'),
|
||||
'story_next_in_title' => __('In Chapter', 'comicpress'),
|
||||
'previous_title' => __('Previous', 'comicpress'),
|
||||
'previous_title' => __('‹ Previous', 'comicpress'),
|
||||
'random_title' => __('Random', 'comicpress'),
|
||||
'archives_title' => __('Archives', 'comicpress'),
|
||||
'comments_title' => __('Comments', 'comicpress'),
|
||||
'next_title' => __('Next', 'comicpress'),
|
||||
'next_title' => __('Next ›', 'comicpress'),
|
||||
'buyprint_title' => __('Buy Print', 'comicpress')
|
||||
);
|
||||
|
||||
$instance = wp_parse_args((array)$instance, array_merge($field_defaults, $title_defaults));
|
||||
|
||||
foreach (array(
|
||||
'first' => __('First', 'comicpress'),
|
||||
'last' => __('Last', 'comicpress'),
|
||||
'previous' => __('Previous', 'comicpress'),
|
||||
'next' => __('Next', 'comicpress'),
|
||||
'first' => __('‹‹ First', 'comicpress'),
|
||||
'last' => __('Last ››', 'comicpress'),
|
||||
'previous' => __('‹ Previous', 'comicpress'),
|
||||
'next' => __('Next ›', 'comicpress'),
|
||||
'story_prev' => __('Previous Chapter', 'comicpress'),
|
||||
'story_next' => __('Next Chapter', 'comicpress'),
|
||||
'story_prev_in' => __('Previous In Chapter', 'comicpress'),
|
||||
|
|
Loading…
Reference in New Issue