The page in question is here:
https://www.hendersoninsurances.com/pages/life.php
I’m using this code at the top of the page in conjunction with “the loop” to display the blog-roll in the sidebar of the page…
<?php
// Include WordPress
define('WP_USE_THEMES', false);
require('../wordpress/wp-load.php');
query_posts('showposts=5'); ?>
…but I also had to download a plugin called “Improved Include Page”,
and use this line of code:
<?php if (function_exists ('iinclude_page')) iinclude_page (77)?>
wherever I want to show the content from static WordPress pages within my site.
I was having trouble getting the content from the pages to show up correctly until I deleted the line “query_posts(‘showposts=5’);” from the top command. Now the page includes are working beautifully, but the blog-roll disappears. I can’t get them to BOTH show up at the same time on the same page. Someone help me through this, PLEASE!!!
Thank you for your time in advance.
]]>in the editor i put: [include-page id=”30″ displayTitle=”true”]
same line is working perfectly with the_content() but not with get_the_content().
It doesn’t include, but just displays the input.
]]>I have WP MU, in the start blogg (www.mysite.com) i have some information in my sidebar, i use:
<?php iinclude_page(54); ?>
But my problem is that the page 54 above i want to include to some other blogs to, like blog2.mysite.com
i get:
Fatal error: Call to undefined function iinclude_page() in /home/public_html/wp-content/themes/butiken/sidebar.php on line 50
Line 50 is the iinclude_page.
Thanks
]]>Each black bar is a WordPress page that is inserted into index.php using the improved-include-page plugin:
<?php if(function_exists(‘iinclude_page’)) iinclude_page(6); ?>
Problem is, I need some of the pages to contain galleries (WP gallery shortcode). The gallery doesn’t load on included pages – it only loads if you go to the page URL.
See: https://dimitrikozyrev.com/paintings/
Click on “Paintings”, then on “Lost Landscapes” – this should display an image gallery. However, looking at https://dimitrikozyrev.com/, no code gets rendered at all by the shortcode.
Is there a way to include pages and still have the shortcode work?
]]>I have a site that uses the plugin “Improved Include Page” which “gets” pages by calling them with code like
<?php if(function_exists('iinclude_page')) iinclude_page(1); ?>
(where “1” is the page number).
Now, I also have the plug-in “Bunny’s Technorati Tags” employed on the site & would like to display the Technorati Tags for those pages called with the “Improved Include Page” code above.
Bunny’s Technorati Tags require the following code to display the tags on a page:
<?php the_bunny_tags(); ?>
THE QUESTION: Is there a way to add <?php the_bunny_tags(); ?>
to the “Improved Include Page” plugin so that using the code <?php if(function_exists('iinclude_page')) iinclude_page(1); ?>
would display BOTH the page’s contents AND the Technorati tags for that page?
THANKS for any & all help!
]]>