fix for 3c vertical in the layout-head.php
Signed-off-by: Philip M. Hofer (Frumph) <frumph_dragon@yahoo.com>
This commit is contained in:
parent
645629932c
commit
f39c22bfcb
|
@ -120,7 +120,7 @@ function comicpress_load_options() {
|
||||||
global $comicpress_options;
|
global $comicpress_options;
|
||||||
$comicpress_options = get_option('comicpress_options');
|
$comicpress_options = get_option('comicpress_options');
|
||||||
if (empty($comicpress_options)) {
|
if (empty($comicpress_options)) {
|
||||||
$comicpress_options['comicpress_version'] = '2.9.0.8';
|
$comicpress_options['comicpress_version'] = '2.9.0.7';
|
||||||
foreach (array(
|
foreach (array(
|
||||||
'disable_comic_frontpage' => false,
|
'disable_comic_frontpage' => false,
|
||||||
'disable_comic_blog_frontpage' => false,
|
'disable_comic_blog_frontpage' => false,
|
||||||
|
@ -203,7 +203,7 @@ function comicpress_load_options() {
|
||||||
add_option('comicpress_options', $comicpress_options, '', 'yes');
|
add_option('comicpress_options', $comicpress_options, '', 'yes');
|
||||||
// update_option('comicpress_options', $comicpress_options);
|
// update_option('comicpress_options', $comicpress_options);
|
||||||
}
|
}
|
||||||
$comicpress_options['comicpress_version'] = '2.9.0.8';
|
$comicpress_options['comicpress_version'] = '2.9.0.7';
|
||||||
update_option('comicpress_options', $comicpress_options);
|
update_option('comicpress_options', $comicpress_options);
|
||||||
return $comicpress_options;
|
return $comicpress_options;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
function display_comic_area() {
|
function display_comic_area() {
|
||||||
global $comicpress_options;
|
global $post, $wp_query, $comicpress_options;
|
||||||
if (comicpress_check_child_file('partials/displaycomic') == false) { ?>
|
if (comicpress_check_child_file('partials/displaycomic') == false) { ?>
|
||||||
<div id="comic-wrap">
|
<div id="comic-wrap">
|
||||||
<div id="comic-head"><?php get_sidebar('over'); ?></div>
|
<div id="comic-head"><?php get_sidebar('over'); ?></div>
|
||||||
|
|
|
@ -14,6 +14,11 @@
|
||||||
<div id="pagewrap-left">
|
<div id="pagewrap-left">
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
||||||
|
<?php if (!is_cp_theme_layout('gn,rgn,v3cr')) { ?>
|
||||||
|
<div id="content" class="narrowcolumn">
|
||||||
|
<div class="column">
|
||||||
|
<?php } ?>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
Protect();
|
Protect();
|
||||||
if (!$comicpress_options['disable_comic_frontpage'] && is_home()) {
|
if (!$comicpress_options['disable_comic_frontpage'] && is_home()) {
|
||||||
|
|
Loading…
Reference in New Issue