Forum Replies Created
-
In reply to: Next/Previous Post Link Plus (Ambrosite) Plug In making post disappear
September 3, 2011 at 6:24 pm #16818Now I have them at the bottom using your suggestion of
graphene_after_post_content instead of graphene_post_nav
see here
http://juicytravels.com/the-ten-best-first-class-airline-experiences-now/
Two questions:
1. Can I have them at both the top and the bottom? I tried adding ‘graphene_after_post_content’, before graphene_post_nav but then the links didn’t show up in either place.
2. If I keep them at the bottom like they are now, how would I give them more space from the content above it? I tried changing the style.css to add margin-top:20px and tried it with padding instead of margin but it didn’t have any effect, like this:
}
#previous-new,
#previous-new a,
#previous-new a:visited,
#next-post-new,
#next-post-new a,
#next-post-new a:visited {
color: #929292;
font: 12px tahoma;
text-decoration: none;
padding-top:20px;
}
#previous-new {
float: left;
margin-left: 8px;
padding-top:20px;
}
#next-post-new {
float: right;
margin-right: 8px;
text-align: right;
padding-top:20px;
}
#previous, #next-post {display: none;}Can I get them a little further down?
And, to make it one twist harder, if I keep them at the bottom, could I have a line break between the previous and next so they are on different lines?
In reply to: Next/Previous Post Link Plus (Ambrosite) Plug In making post disappear
September 3, 2011 at 6:04 pm #16817I just realized that one set of those errors was smarter navigation conflicting which I’d installed but hadn’t figured out how to use yet. I deactivated that and the errors about that went away.
But, if you go to my home page the only thing there now is:
Warning: Cannot modify header information – headers already sent by (output started at /home/juicytrv/public_html/wp-content/themes/graphene-child/functions.php:38) in /home/juicytrv/public_html/wp-includes/pluggable.php on line 934
I don’t know what that’s about? The home page doesn’t load.
But once I disabled the smarter navigation plugin, my links are working off menu order perfectly on
http://juicytravels.com/the-ten-best-first-class-airline-experiences-now-2/
So now I’m down to two issues:
1. What is messing up the home page from loading? Maybe another conflict with something else?
2. Is there a way to get the links in the body of the post, not at the bottom but in the top right under the hr under the title, and aligned right?
3. If I wanted to include image arrows for the left and the right arrows, instead of the << and >>, can you help me with the css for that? I assume that’s a css thing or does it need to be somewhere else?
Thanks again…sorry not to be getting this figured out more smoothly!
2.
In reply to: Next/Previous Post Link Plus (Ambrosite) Plug In making post disappear
September 3, 2011 at 5:55 pm #16816If my child themes function file is this:
<?php
function graphene_slider_post_types(){
return array(‘post’, ‘page’);
}
add_filter( ‘graphene_slider_post_type’, ‘graphene_slider_post_types’ );
?>
<?php
// attaches the function my_post_nav to the hook graphene_post_nav
add_action (‘graphene_post_nav’, ‘my_post_nav’);// our function
function my_post_nav(){// this will allow us to use other hooks but still only show on single posts
if ( is_single() && ! is_page() ) : ?>
<div id=”my-post-nav”> <!– div to contain your links –>
<?php previous_post_link_plus( array(
‘order_by’ => ‘menu_order’,
‘loop’ => true,
‘max_length’ => 0,
‘tooltip’ => ‘Previous page’,
‘in_same_cat’ => true,
‘ex_cats’ => ’12’
) );?> |
<?php next_post_link_plus( array(
‘order_by’ => ‘menu_order’,
‘loop’ => true,
‘max_length’ => 0,
‘tooltip’ => ‘Next page’,
‘in_same_cat’ => true,
‘ex_cats’ => ’12’
) );?>
</div>
<?php endif; ?>
<?php } ?>
[code]I don’t get where it’s telling it to use the Ambrosite plugin. Like when I changed the loop file I changed
[code]
<p id=”previous”><?php previous_post_link(); ?></p>
<p id=”next-post”><?php next_post_link(); ?></p>
[code]to
[code]
<p id=”previous”><?php previous_post_link_plus(); ?></p>
<p id=”next-post”><?php next_post_link_plus(); ?></p>
[code]And it seems like I’m telling it to use that plug in? But in what we pasted into the functions.php file it doesn’t seem like that connection is being made?
[code]
<?php
function graphene_slider_post_types(){
return array(‘post’, ‘page’);
}
add_filter( ‘graphene_slider_post_type’, ‘graphene_slider_post_types’ );
?>
<?php
// attaches the function my_post_nav to the hook graphene_post_nav
add_action (‘graphene_post_nav’, ‘my_post_nav’);
// our function
function my_post_nav(){
// this will allow us to use other hooks but still only show on single posts
if ( is_single() && ! is_page() ) : ?>
<div id=”my-post-nav”> <!– div to contain your links –>
<?php previous_post_link_plus( array(
‘order_by’ => ‘menu_order’,
‘loop’ => true,
‘max_length’ => 0,
‘tooltip’ => ‘Previous page’,
‘in_same_cat’ => true,
‘ex_cats’ => ’12’
) );?> |
<?php next_post_link_plus( array(
‘order_by’ => ‘menu_order’,
‘loop’ => true,
‘max_length’ => 0,
‘tooltip’ => ‘Next page’,
‘in_same_cat’ => true,
‘ex_cats’ => ’12’
) );?>
</div>
<?php endif; ?>
<?php } ?>
I don’t get where it’s telling it to use the Ambrosite plugin. Like when I changed the loop file I changed
[code]
<p id=”previous”><?php previous_post_link(); ?></p>
<p id=”next-post”><?php next_post_link(); ?></p>
[code]to
[code]
<p id=”previous”><?php previous_post_link_plus(); ?></p>
<p id=”next-post”><?php next_post_link_plus(); ?></p>
[code]And it seems like I’m telling it to use that plug in? But in what we pasted into the functions.php file it doesn’t seem like that connection is being made?
[code]
I don’t get where it’s telling it to use the Ambrosite plugin. Like when I changed the loop file I changed
<p id=”previous”><?php previous_post_link(); ?></p>
<p id=”next-post”><?php next_post_link(); ?></p>
[code]to
[code]
<p id=”previous”><?php previous_post_link_plus(); ?></p>
<p id=”next-post”><?php next_post_link_plus(); ?></p>
[code]And it seems like I’m telling it to use that plug in? But in what we pasted into the functions.php file it doesn’t seem like that connection is being made?
[code]
<p id=”previous”><?php previous_post_link(); ?></p>
<p id=”next-post”><?php next_post_link(); ?></p>
to
[code]
<p id=”previous”><?php previous_post_link_plus(); ?></p>
<p id=”next-post”><?php next_post_link_plus(); ?></p>
[code]And it seems like I’m telling it to use that plug in? But in what we pasted into the functions.php file it doesn’t seem like that connection is being made?
[code]
to
<p id=”previous”><?php previous_post_link_plus(); ?></p>
<p id=”next-post”><?php next_post_link_plus(); ?></p>
[code]And it seems like I’m telling it to use that plug in? But in what we pasted into the functions.php file it doesn’t seem like that connection is being made?
[code]
<p id=”previous”><?php previous_post_link_plus(); ?></p>
<p id=”next-post”><?php next_post_link_plus(); ?></p>
And it seems like I’m telling it to use that plug in? But in what we pasted into the functions.php file it doesn’t seem like that connection is being made?
[code]
And it seems like I’m telling it to use that plug in? But in what we pasted into the functions.php file it doesn’t seem like that connection is being made?
In reply to: Next/Previous Post Link Plus (Ambrosite) Plug In making post disappear
September 3, 2011 at 5:48 pm #16815Ok, I don’t mean to be a pain but I’m stuck.
I removed the loop.php and single.php from the child theme folder.
So it’s using just the normal in the normal folder loop and single.php files with no modifications.
Then I added to the child theme functions.php the code you have above so with what I already had and what I added my child functions.php looks like this:
<?php
function graphene_slider_post_types(){
return array(‘post’, ‘page’);
}
add_filter( ‘graphene_slider_post_type’, ‘graphene_slider_post_types’ );
?>
<?php
// attaches the function my_post_nav to the hook graphene_post_nav
add_action (‘graphene_post_nav’, ‘my_post_nav’);
// our function
function my_post_nav(){
// this will allow us to use other hooks but still only show on single posts
if ( is_single() && ! is_page() ) : ?>
<div id=”my-post-nav”> <!– div to contain your links –>
<?php previous_post_link_plus( array(
‘order_by’ => ‘menu_order’,
‘loop’ => true,
‘max_length’ => 0,
‘tooltip’ => ‘Previous page’,
‘in_same_cat’ => true,
‘ex_cats’ => ’12’
) );?> |
<?php next_post_link_plus( array(
‘order_by’ => ‘menu_order’,
‘loop’ => true,
‘max_length’ => 0,
‘tooltip’ => ‘Next page’,
‘in_same_cat’ => true,
‘ex_cats’ => ’12’
) );?>
</div>
<?php endif; ?>
<?php } ?>
I made no changes to the styles and checked the live page and no links were there (as they were when I had it set up the other way)
Then I added to the child theme style.css file:
I added
}
#previous-new,
#previous-new a,
#previous-new a:visited,
#next-post-new,
#next-post-new a,
#next-post-new a:visited {
color: #929292;
font: 12px tahoma;
text-decoration: none;
}
#previous-new {
float: left;
margin-left: 8px;
}
#next-post-new {
float: right;
margin-right: 8px;
text-align: right;
}
#previous, #next-post {display: none;}
I refreshed the page and the links were there but:
1. They are in the wrong order, as in doing traditional post linkage order like newer to oldest, which is not what I want. When I had it set up before it was reading “menu order” from the way I arranged them in postMash. So the order isn’t going right now.
2. Then when I clicked on my home page link I got a page of errors
Warning: Cannot modify header information – headers already sent by (output started at /home/juicytrv/public_html/wp-content/themes/graphene-child/functions.php:38) in /home/juicytrv/public_html/wp-includes/pluggable.php on line 934
and
Warning: Cannot modify header information – headers already sent by (output started at /home/juicytrv/public_html/wp-content/themes/graphene-child/functions.php:38) in /home/juicytrv/public_html/wp-content/plugins/smarter-navigation/main.php on line 86
Warning: Cannot modify header information – headers already sent by (output started at /home/juicytrv/public_html/wp-content/themes/graphene-child/functions.php:38) in /home/juicytrv/public_html/wp-content/plugins/smarter-navigation/main.php on line 86
Warning: Cannot modify header information – headers already sent by (output started at /home/juicytrv/public_html/wp-content/themes/graphene-child/functions.php:38) in /home/juicytrv/public_html/wp-content/plugins/smarter-navigation/main.php on line 86
So clearly I missed a step in what you suggested I do…sorry…can you help me troubleshoot please?
Thanks so much.
In reply to: Next/Previous Post Link Plus (Ambrosite) Plug In making post disappear
September 3, 2011 at 12:07 am #16814So I’m going to try what you suggested, only question still being is there any way to put the links under the hr under the title on the right side? 🙂
In reply to: Next/Previous Post Link Plus (Ambrosite) Plug In making post disappear
September 2, 2011 at 8:19 pm #16811Thank you so much for the detailed help.
Ok, I want to do it right the first time so if you’ll bear with me I want to use action hooks. It would be silly to do otherwise.
I did read through the links Ken sent…very helpful, thanks Ken.
So are you saying then:
to remove what I have on loop.php
remove what I have on single.php
add the code above only to the functions.php file in my child theme file?
If so, the code above replaces the need to change lines 29 and 30 on the main loop.php file where you add the _plus?
And if I don’t want it at the bottom, haven’t played with it yet, but want it after the hr under the title, is there any code you know of for that?
And when you say instead of graphene_post-nav, you mean in the hook line
add_action (‘graphene_post_nav’, ‘my_post_nav’);
?
THANK YOU 🙂 I really appreciate it!
In reply to: Next/Previous Post Link Plus (Ambrosite) Plug In making post disappear
September 2, 2011 at 7:16 pm #16808http://juicytravels.com/the-ten-best-first-class-airline-experiences-now/
I mean that I want to have the links for example at the bottom of the content but IN the white blog post part, or, under the
which is under the article title to the far right.
Thanks again…
Also you might want to follow this thread now..
They are saying I don’t have it set up the best way…
In reply to: Next/Previous Post Link Plus (Ambrosite) Plug In making post disappear
September 2, 2011 at 6:48 pm #16807Oh I missed the loop.php suggestion before, thanks.
I’m not sure I’m following.
You’re saying put that first block of code on the child theme functions.php, yup got that.
But the action hooks (need to read up on it) but the part I got lost on here is the second code block…so the “add_action” is the action hook?
“You now need to hide the default links using CSS and style the two new ones using:”
Are you saying that
#previous-new, #next-post-new { copy css from default links here }
#previous, #next-post {display: none;}
Will make the default nav links hidden, but the Ambrosite ones visible?
Is this how I can move them say to the far right?
Does this mean I need to change how I have it now? Here is what I have now:
In the loop.php file I changed lines 29 and 30
<p id=”previous”><?php previous_post_link(); ?></p>
<p id=”next-post”><?php next_post_link(); ?></p>
[code]
to
[code]
<p id=”previous”><?php previous_post_link_plus(); ?></p>
<p id=”next-post”><?php next_post_link_plus(); ?></p>
[code]I posted this after the header line on single.php
[code]
get_header(); ?>then I pasted:
<?php previous_post_link_plus( array(
‘order_by’ => ‘menu_order’,
‘loop’ => true,
‘max_length’ => 0,
‘tooltip’ => ‘Previous page’,
‘in_same_cat’ => true,
‘ex_cats’ => ’12’
) );?> |
<?php next_post_link_plus( array(
‘order_by’ => ‘menu_order’,
‘loop’ => true,
‘max_length’ => 0,
‘tooltip’ => ‘Next page’,
‘in_same_cat’ => true,
‘ex_cats’ => ’12’
) );?>
[code]So…it’s showing up and working but yes, I’m worried about when the theme gets updated.
And, I’m not sure I’m connecting the dots between what you said with adding the action hook and the css change.Can you look at what I did and perhaps elaborate on if I need to do it differently…I don’t see post_link_plus in that functions code so I’m confused where/how it knows to use that plug in?
Sorry for the confusion 😉
And thanks for the help!The other thing I want to do is put those links further down in the body of the post but when I moved the code
[code]
<?php /* Posts navigation for single post pages, but not for Page post */ ?>
<?php if ( is_single() && ! is_page() ) : ?>
<div class=”post-nav clearfix”>
<p id=”previous”><?php previous_post_link_plus(); ?></p>
<p id=”next-post”><?php next_post_link_plus(); ?></p>
<?php do_action(‘graphene_post_nav’); ?>
</div>
<?php endif; ?>
[code]To down below the title or above the content, it didn’t move..I suppose because in single.php it’s right after the header? How can I rearrange things so that it’s below the title line and to the right? I want it to be more integrated with the post itself so it’s easier and more obvious to the reader to keep moving through the “pages” of the article.
[code]
<p id=”previous”><?php previous_post_link(); ?></p>
<p id=”next-post”><?php next_post_link(); ?></p>
to
[code]
<p id=”previous”><?php previous_post_link_plus(); ?></p>
<p id=”next-post”><?php next_post_link_plus(); ?></p>
[code]I posted this after the header line on single.php
[code]
get_header(); ?>then I pasted:
<?php previous_post_link_plus( array(
‘order_by’ => ‘menu_order’,
‘loop’ => true,
‘max_length’ => 0,
‘tooltip’ => ‘Previous page’,
‘in_same_cat’ => true,
‘ex_cats’ => ’12’
) );?> |
<?php next_post_link_plus( array(
‘order_by’ => ‘menu_order’,
‘loop’ => true,
‘max_length’ => 0,
‘tooltip’ => ‘Next page’,
‘in_same_cat’ => true,
‘ex_cats’ => ’12’
) );?>
[code]So…it’s showing up and working but yes, I’m worried about when the theme gets updated.
And, I’m not sure I’m connecting the dots between what you said with adding the action hook and the css change.Can you look at what I did and perhaps elaborate on if I need to do it differently…I don’t see post_link_plus in that functions code so I’m confused where/how it knows to use that plug in?
Sorry for the confusion 😉
And thanks for the help!The other thing I want to do is put those links further down in the body of the post but when I moved the code
[code]
<?php /* Posts navigation for single post pages, but not for Page post */ ?>
<?php if ( is_single() && ! is_page() ) : ?>
<div class=”post-nav clearfix”>
<p id=”previous”><?php previous_post_link_plus(); ?></p>
<p id=”next-post”><?php next_post_link_plus(); ?></p>
<?php do_action(‘graphene_post_nav’); ?>
</div>
<?php endif; ?>
[code]To down below the title or above the content, it didn’t move..I suppose because in single.php it’s right after the header? How can I rearrange things so that it’s below the title line and to the right? I want it to be more integrated with the post itself so it’s easier and more obvious to the reader to keep moving through the “pages” of the article.
[code]
to
<p id=”previous”><?php previous_post_link_plus(); ?></p>
<p id=”next-post”><?php next_post_link_plus(); ?></p>
[code]I posted this after the header line on single.php
[code]
get_header(); ?>then I pasted:
<?php previous_post_link_plus( array(
‘order_by’ => ‘menu_order’,
‘loop’ => true,
‘max_length’ => 0,
‘tooltip’ => ‘Previous page’,
‘in_same_cat’ => true,
‘ex_cats’ => ’12’
) );?> |
<?php next_post_link_plus( array(
‘order_by’ => ‘menu_order’,
‘loop’ => true,
‘max_length’ => 0,
‘tooltip’ => ‘Next page’,
‘in_same_cat’ => true,
‘ex_cats’ => ’12’
) );?>
[code]So…it’s showing up and working but yes, I’m worried about when the theme gets updated.
And, I’m not sure I’m connecting the dots between what you said with adding the action hook and the css change.Can you look at what I did and perhaps elaborate on if I need to do it differently…I don’t see post_link_plus in that functions code so I’m confused where/how it knows to use that plug in?
Sorry for the confusion 😉
And thanks for the help!The other thing I want to do is put those links further down in the body of the post but when I moved the code
[code]
<?php /* Posts navigation for single post pages, but not for Page post */ ?>
<?php if ( is_single() && ! is_page() ) : ?>
<div class=”post-nav clearfix”>
<p id=”previous”><?php previous_post_link_plus(); ?></p>
<p id=”next-post”><?php next_post_link_plus(); ?></p>
<?php do_action(‘graphene_post_nav’); ?>
</div>
<?php endif; ?>
[code]To down below the title or above the content, it didn’t move..I suppose because in single.php it’s right after the header? How can I rearrange things so that it’s below the title line and to the right? I want it to be more integrated with the post itself so it’s easier and more obvious to the reader to keep moving through the “pages” of the article.
[code]
<p id=”previous”><?php previous_post_link_plus(); ?></p>
<p id=”next-post”><?php next_post_link_plus(); ?></p>
I posted this after the header line on single.php
[code]
get_header(); ?>then I pasted:
<?php previous_post_link_plus( array(
‘order_by’ => ‘menu_order’,
‘loop’ => true,
‘max_length’ => 0,
‘tooltip’ => ‘Previous page’,
‘in_same_cat’ => true,
‘ex_cats’ => ’12’
) );?> |
<?php next_post_link_plus( array(
‘order_by’ => ‘menu_order’,
‘loop’ => true,
‘max_length’ => 0,
‘tooltip’ => ‘Next page’,
‘in_same_cat’ => true,
‘ex_cats’ => ’12’
) );?>
[code]So…it’s showing up and working but yes, I’m worried about when the theme gets updated.
And, I’m not sure I’m connecting the dots between what you said with adding the action hook and the css change.Can you look at what I did and perhaps elaborate on if I need to do it differently…I don’t see post_link_plus in that functions code so I’m confused where/how it knows to use that plug in?
Sorry for the confusion 😉
And thanks for the help!The other thing I want to do is put those links further down in the body of the post but when I moved the code
[code]
<?php /* Posts navigation for single post pages, but not for Page post */ ?>
<?php if ( is_single() && ! is_page() ) : ?>
<div class=”post-nav clearfix”>
<p id=”previous”><?php previous_post_link_plus(); ?></p>
<p id=”next-post”><?php next_post_link_plus(); ?></p>
<?php do_action(‘graphene_post_nav’); ?>
</div>
<?php endif; ?>
[code]To down below the title or above the content, it didn’t move..I suppose because in single.php it’s right after the header? How can I rearrange things so that it’s below the title line and to the right? I want it to be more integrated with the post itself so it’s easier and more obvious to the reader to keep moving through the “pages” of the article.
[code]
I posted this after the header line on single.php
get_header(); ?>
then I pasted:
<?php previous_post_link_plus( array(
‘order_by’ => ‘menu_order’,
‘loop’ => true,
‘max_length’ => 0,
‘tooltip’ => ‘Previous page’,
‘in_same_cat’ => true,
‘ex_cats’ => ’12’
) );?> |
<?php next_post_link_plus( array(
‘order_by’ => ‘menu_order’,
‘loop’ => true,
‘max_length’ => 0,
‘tooltip’ => ‘Next page’,
‘in_same_cat’ => true,
‘ex_cats’ => ’12’
) );?>
[code]So…it’s showing up and working but yes, I’m worried about when the theme gets updated.
And, I’m not sure I’m connecting the dots between what you said with adding the action hook and the css change.Can you look at what I did and perhaps elaborate on if I need to do it differently…I don’t see post_link_plus in that functions code so I’m confused where/how it knows to use that plug in?
Sorry for the confusion 😉
And thanks for the help!The other thing I want to do is put those links further down in the body of the post but when I moved the code
[code]
<?php /* Posts navigation for single post pages, but not for Page post */ ?>
<?php if ( is_single() && ! is_page() ) : ?>
<div class=”post-nav clearfix”>
<p id=”previous”><?php previous_post_link_plus(); ?></p>
<p id=”next-post”><?php next_post_link_plus(); ?></p>
<?php do_action(‘graphene_post_nav’); ?>
</div>
<?php endif; ?>
[code]To down below the title or above the content, it didn’t move..I suppose because in single.php it’s right after the header? How can I rearrange things so that it’s below the title line and to the right? I want it to be more integrated with the post itself so it’s easier and more obvious to the reader to keep moving through the “pages” of the article.
[code]
get_header(); ?>
then I pasted:
<?php previous_post_link_plus( array(
‘order_by’ => ‘menu_order’,
‘loop’ => true,
‘max_length’ => 0,
‘tooltip’ => ‘Previous page’,
‘in_same_cat’ => true,
‘ex_cats’ => ’12’
) );?> |
<?php next_post_link_plus( array(
‘order_by’ => ‘menu_order’,
‘loop’ => true,
‘max_length’ => 0,
‘tooltip’ => ‘Next page’,
‘in_same_cat’ => true,
‘ex_cats’ => ’12’
) );?>
So…it’s showing up and working but yes, I’m worried about when the theme gets updated.
And, I’m not sure I’m connecting the dots between what you said with adding the action hook and the css change.Can you look at what I did and perhaps elaborate on if I need to do it differently…I don’t see post_link_plus in that functions code so I’m confused where/how it knows to use that plug in?
Sorry for the confusion 😉
And thanks for the help!The other thing I want to do is put those links further down in the body of the post but when I moved the code
[code]
<?php /* Posts navigation for single post pages, but not for Page post */ ?>
<?php if ( is_single() && ! is_page() ) : ?>
<div class=”post-nav clearfix”>
<p id=”previous”><?php previous_post_link_plus(); ?></p>
<p id=”next-post”><?php next_post_link_plus(); ?></p>
<?php do_action(‘graphene_post_nav’); ?>
</div>
<?php endif; ?>
[code]To down below the title or above the content, it didn’t move..I suppose because in single.php it’s right after the header? How can I rearrange things so that it’s below the title line and to the right? I want it to be more integrated with the post itself so it’s easier and more obvious to the reader to keep moving through the “pages” of the article.
[code]
So…it’s showing up and working but yes, I’m worried about when the theme gets updated.
And, I’m not sure I’m connecting the dots between what you said with adding the action hook and the css change.
Can you look at what I did and perhaps elaborate on if I need to do it differently…I don’t see post_link_plus in that functions code so I’m confused where/how it knows to use that plug in?
Sorry for the confusion 😉
And thanks for the help!
The other thing I want to do is put those links further down in the body of the post but when I moved the code
<?php /* Posts navigation for single post pages, but not for Page post */ ?>
<?php if ( is_single() && ! is_page() ) : ?>
<div class=”post-nav clearfix”>
<p id=”previous”><?php previous_post_link_plus(); ?></p>
<p id=”next-post”><?php next_post_link_plus(); ?></p>
<?php do_action(‘graphene_post_nav’); ?>
</div>
<?php endif; ?>
[code]To down below the title or above the content, it didn’t move..I suppose because in single.php it’s right after the header? How can I rearrange things so that it’s below the title line and to the right? I want it to be more integrated with the post itself so it’s easier and more obvious to the reader to keep moving through the “pages” of the article.
[code]
<?php /* Posts navigation for single post pages, but not for Page post */ ?>
<?php if ( is_single() && ! is_page() ) : ?>
<div class=”post-nav clearfix”>
<p id=”previous”><?php previous_post_link_plus(); ?></p>
<p id=”next-post”><?php next_post_link_plus(); ?></p>
<?php do_action(‘graphene_post_nav’); ?>
</div>
<?php endif; ?>
To down below the title or above the content, it didn’t move..I suppose because in single.php it’s right after the header? How can I rearrange things so that it’s below the title line and to the right? I want it to be more integrated with the post itself so it’s easier and more obvious to the reader to keep moving through the “pages” of the article.
[code]
To down below the title or above the content, it didn’t move..I suppose because in single.php it’s right after the header? How can I rearrange things so that it’s below the title line and to the right? I want it to be more integrated with the post itself so it’s easier and more obvious to the reader to keep moving through the “pages” of the article.
Oh sorry I forgot to post a link to my page so you can see what I’m doing:
http://juicytravels.com/the-ten-best-first-class-airline-experiences-now/
