SimpsonsRule
Forum Replies Created
-
Just as a follow-up, I have installed the latest version of the plugin and entered a URL for the Google Publisher Page. The publisher tag is now appearing in the source but the author tag remains there even though I set Author Highlighting to Don’t Show.
I haven’t found a solution to this problem yet.
Forum: Plugins
In reply to: [WP-PageNavi] [Plugin: WP-PageNavi] Next and Last button text doesn't fit.Worked like a charm! Thank you ??
Forum: Plugins
In reply to: [WP-PageNavi] [Plugin: WP-PageNavi] Next and Last button text doesn't fit.Scroll to the bottom
https://clevermusings.net/page/6/?s=game&x=0&y=0I’ve been doing some research online and I think I can ask the question a little better.
I’m looking for a way to add the functionality of
<?php wp_pagenavi( array( 'type' => 'multipart' ) ); ?>
to the content of a post throughadd_filter
or maybeadd_action
so that it can come before other plugins which add to the content of posts.In other words, I have two plugins which add things to the content of the post. My Single Post template has the following:
<?php the_content(); ?> <?php wp_pagenavi( array( 'type' => 'multipart' ) ); ?>
If I understand it correctly, those two plugins add things after the_content and then the page navigation links are added last. I tried rearranging the order plugins load but that doesn’t do anything because the WP-PageNavi plugin doesn’t automatically add anything to the_content.
I tried adding the following function:
<?php add_filter( "the_content", "wp_pagenavi( array( 'type' => 'multipart' ) )", 1 ); ?>
But it spat out an error at me on the site. I’m clearly not very good at this, but what I was trying to do was call the pagination function after the_content and set its priority to 1.
I would appreciate any help with this ??
With the development version I put:
‘%%term_title%% Archives %%sep%% %%page%% %%sep%% %%sitename%%’
And it returned:
[Category Name] Archives || [Site Name]
The double separator is still there and the page numbers are missing entirely. Kind of the opposite result eh? ??