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-comic">
|
||||||
<div class="post-info">
|
<div class="post-info">
|
||||||
<?php if ($enable_comic_post_author_gravatar == 'yes') { ?>
|
<?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 } ?>
|
||||||
<?php if (function_exists('comicpress_show_mood_in_post')) comicpress_show_mood_in_post(); ?>
|
<?php if (function_exists('comicpress_show_mood_in_post')) comicpress_show_mood_in_post(); ?>
|
||||||
<?php if ($enable_comic_post_calendar == 'yes') { ?>
|
<?php if ($enable_comic_post_calendar == 'yes') { ?>
|
||||||
|
@ -96,7 +96,7 @@
|
||||||
<div <?php post_class(); ?>>
|
<div <?php post_class(); ?>>
|
||||||
<div class="post-info">
|
<div class="post-info">
|
||||||
<?php if ($enable_post_author_gravatar == 'yes') { ?>
|
<?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 } ?>
|
||||||
<?php if (function_exists('comicpress_show_mood_in_post')) comicpress_show_mood_in_post(); ?>
|
<?php if (function_exists('comicpress_show_mood_in_post')) comicpress_show_mood_in_post(); ?>
|
||||||
<?php if ($enable_post_calendar == 'yes') { ?>
|
<?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) . '">';
|
echo '<a href="' . $url . '" rel="external nofollow" title="' . wp_specialchars(get_comment_author(), 1) . '">';
|
||||||
$id_or_email = get_comment_author_email();
|
$id_or_email = get_comment_author_email();
|
||||||
if (empty($id_or_email)) $id_or_email = get_comment_author();
|
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));
|
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 {
|
} else {
|
||||||
if ($comment_type == 'pingback' || $comment_type == 'trackback') {
|
if ($comment_type == 'pingback' || $comment_type == 'trackback') {
|
||||||
|
|
|
@ -12,10 +12,10 @@ function display_comic_post() {
|
||||||
$first_comic = get_first_comic_permalink(); $last_comic = get_last_comic_permalink();
|
$first_comic = get_first_comic_permalink(); $last_comic = get_last_comic_permalink();
|
||||||
?>
|
?>
|
||||||
<div class="nav">
|
<div class="nav">
|
||||||
<?php if ( get_permalink() != $first_comic ) { ?><div class="nav-first"><a href="<?php echo $first_comic ?>"><?php _e('‹‹ First','comicpress'); ?></a></div><?php } ?>
|
<?php if ( get_permalink() != $first_comic ) { ?><div class="nav-first"><a href="<?php echo $first_comic ?>"><?php _e('‹‹ First','comicpress'); ?></a></div><?php } ?>
|
||||||
<div class="nav-previous"><?php $temp_query = $wp_query->is_single; $wp_query->is_single = true; previous_comic_link('%link', __('‹ Previous','comicpress')); $wp_query->is_single = $temp_query;$temp_query = null; ?></div>
|
<div class="nav-previous"><?php $temp_query = $wp_query->is_single; $wp_query->is_single = true; previous_comic_link('%link', __('‹ Previous','comicpress')); $wp_query->is_single = $temp_query;$temp_query = null; ?></div>
|
||||||
<div class="nav-next"><?php next_comic_link('%link', __('Next ›','comicpress')) ?></div>
|
<div class="nav-next"><?php next_comic_link('%link', __('Next ›','comicpress')) ?></div>
|
||||||
<?php if ( get_permalink() != $last_comic ) { ?><div class="nav-last"><a href="<?php echo $last_comic ?>"><?php _e('Last ››','comicpress'); ?></a></div><?php } ?>
|
<?php if ( get_permalink() != $last_comic ) { ?><div class="nav-last"><a href="<?php echo $last_comic ?>"><?php _e('Last ››','comicpress'); ?></a></div><?php } ?>
|
||||||
</div>
|
</div>
|
||||||
<div class="clear"></div>
|
<div class="clear"></div>
|
||||||
<div class="<?php comicpress_post_class(); ?>">
|
<div class="<?php comicpress_post_class(); ?>">
|
||||||
|
@ -23,7 +23,7 @@ function display_comic_post() {
|
||||||
<div class="post-comic">
|
<div class="post-comic">
|
||||||
<div class="post-info">
|
<div class="post-info">
|
||||||
<?php if ($enable_comic_post_author_gravatar == 'yes') { ?>
|
<?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 } ?>
|
||||||
<?php if (function_exists('comicpress_show_mood_in_post')) comicpress_show_mood_in_post(); ?>
|
<?php if (function_exists('comicpress_show_mood_in_post')) comicpress_show_mood_in_post(); ?>
|
||||||
<?php if ($enable_comic_post_calendar == 'yes') { ?>
|
<?php if ($enable_comic_post_calendar == 'yes') { ?>
|
||||||
|
|
|
@ -3,16 +3,18 @@ Author: Tyler Martin
|
||||||
Style: Default
|
Style: Default
|
||||||
*/
|
*/
|
||||||
#comic_navi_wrapper {
|
#comic_navi_wrapper {
|
||||||
padding: 5px 0 10px 0;
|
width: 100%;
|
||||||
|
height: 25px;
|
||||||
|
background: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
#comic_navi {
|
#comic_navi {
|
||||||
height: 25px;
|
padding: 0;
|
||||||
background: black;
|
margin: 0;
|
||||||
display: table;
|
list-style: none;
|
||||||
border-collapse: collapse;
|
float: left;
|
||||||
margin: 0 auto;
|
line-height: 25px;
|
||||||
|
font-size: 13px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navi-comictitle {
|
.navi-comictitle {
|
||||||
|
@ -22,7 +24,16 @@ Style: Default
|
||||||
.navi {
|
.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 {
|
.navi-first {
|
||||||
|
|
|
@ -21,7 +21,7 @@ $count = $tmp_search->post_count;
|
||||||
<div class="post-comic">
|
<div class="post-comic">
|
||||||
<div class="post-info">
|
<div class="post-info">
|
||||||
<?php if ($enable_comic_post_author_gravatar == 'yes') { ?>
|
<?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 } ?>
|
||||||
<?php if (function_exists('comicpress_show_mood_in_post')) comicpress_show_mood_in_post(); ?>
|
<?php if (function_exists('comicpress_show_mood_in_post')) comicpress_show_mood_in_post(); ?>
|
||||||
<?php if ($enable_comic_post_calendar == 'yes') { ?>
|
<?php if ($enable_comic_post_calendar == 'yes') { ?>
|
||||||
|
@ -54,7 +54,7 @@ $count = $tmp_search->post_count;
|
||||||
<div <?php post_class(); ?>>
|
<div <?php post_class(); ?>>
|
||||||
<div class="post-info">
|
<div class="post-info">
|
||||||
<?php if ($enable_post_author_gravatar == 'yes') { ?>
|
<?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 } ?>
|
||||||
<?php if (function_exists('comicpress_show_mood_in_post')) comicpress_show_mood_in_post(); ?>
|
<?php if (function_exists('comicpress_show_mood_in_post')) comicpress_show_mood_in_post(); ?>
|
||||||
<?php if ($enable_post_calendar == 'yes') { ?>
|
<?php if ($enable_post_calendar == 'yes') { ?>
|
||||||
|
|
|
@ -23,7 +23,7 @@ $count = $tmp_search->post_count;
|
||||||
<div class="post-comic">
|
<div class="post-comic">
|
||||||
<div class="post-info">
|
<div class="post-info">
|
||||||
<?php if ($enable_comic_post_author_gravatar == 'yes') { ?>
|
<?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 } ?>
|
||||||
<?php if (function_exists('comicpress_show_mood_in_post')) comicpress_show_mood_in_post(); ?>
|
<?php if (function_exists('comicpress_show_mood_in_post')) comicpress_show_mood_in_post(); ?>
|
||||||
<?php if ($enable_comic_post_calendar == 'yes') { ?>
|
<?php if ($enable_comic_post_calendar == 'yes') { ?>
|
||||||
|
@ -62,7 +62,7 @@ $count = $tmp_search->post_count;
|
||||||
<div <?php post_class(); ?>>
|
<div <?php post_class(); ?>>
|
||||||
<div class="post-info">
|
<div class="post-info">
|
||||||
<?php if ($enable_post_author_gravatar == 'yes') { ?>
|
<?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 } ?>
|
||||||
<?php if (function_exists('comicpress_show_mood_in_post')) comicpress_show_mood_in_post(); ?>
|
<?php if (function_exists('comicpress_show_mood_in_post')) comicpress_show_mood_in_post(); ?>
|
||||||
<?php if ($enable_post_calendar == 'yes') { ?>
|
<?php if ($enable_post_calendar == 'yes') { ?>
|
||||||
|
|
|
@ -270,27 +270,27 @@ class WidgetComicPressGraphicalStorylineNavigation extends WP_Widget {
|
||||||
);
|
);
|
||||||
|
|
||||||
$title_defaults = array(
|
$title_defaults = array(
|
||||||
'first_title' => __('First', 'comicpress'),
|
'first_title' => __('‹‹ First', 'comicpress'),
|
||||||
'last_title' => __('Latest', 'comicpress'),
|
'last_title' => __('Last ››', 'comicpress'),
|
||||||
'story_prev_title' => __('Chapter', 'comicpress'),
|
'story_prev_title' => __('Chapter', 'comicpress'),
|
||||||
'story_next_title' => __('Chapter', 'comicpress'),
|
'story_next_title' => __('Chapter', 'comicpress'),
|
||||||
'story_prev_in_title' => __('In Chapter', 'comicpress'),
|
'story_prev_in_title' => __('In Chapter', 'comicpress'),
|
||||||
'story_next_in_title' => __('In Chapter', 'comicpress'),
|
'story_next_in_title' => __('In Chapter', 'comicpress'),
|
||||||
'previous_title' => __('Previous', 'comicpress'),
|
'previous_title' => __('‹ Previous', 'comicpress'),
|
||||||
'random_title' => __('Random', 'comicpress'),
|
'random_title' => __('Random', 'comicpress'),
|
||||||
'archives_title' => __('Archives', 'comicpress'),
|
'archives_title' => __('Archives', 'comicpress'),
|
||||||
'comments_title' => __('Comments', 'comicpress'),
|
'comments_title' => __('Comments', 'comicpress'),
|
||||||
'next_title' => __('Next', 'comicpress'),
|
'next_title' => __('Next ›', 'comicpress'),
|
||||||
'buyprint_title' => __('Buy Print', 'comicpress')
|
'buyprint_title' => __('Buy Print', 'comicpress')
|
||||||
);
|
);
|
||||||
|
|
||||||
$instance = wp_parse_args((array)$instance, array_merge($field_defaults, $title_defaults));
|
$instance = wp_parse_args((array)$instance, array_merge($field_defaults, $title_defaults));
|
||||||
|
|
||||||
foreach (array(
|
foreach (array(
|
||||||
'first' => __('First', 'comicpress'),
|
'first' => __('‹‹ First', 'comicpress'),
|
||||||
'last' => __('Last', 'comicpress'),
|
'last' => __('Last ››', 'comicpress'),
|
||||||
'previous' => __('Previous', 'comicpress'),
|
'previous' => __('‹ Previous', 'comicpress'),
|
||||||
'next' => __('Next', 'comicpress'),
|
'next' => __('Next ›', 'comicpress'),
|
||||||
'story_prev' => __('Previous Chapter', 'comicpress'),
|
'story_prev' => __('Previous Chapter', 'comicpress'),
|
||||||
'story_next' => __('Next Chapter', 'comicpress'),
|
'story_next' => __('Next Chapter', 'comicpress'),
|
||||||
'story_prev_in' => __('Previous In Chapter', 'comicpress'),
|
'story_prev_in' => __('Previous In Chapter', 'comicpress'),
|
||||||
|
|
Loading…
Reference in New Issue