I am new to wordpress, but I’ve found that I need to use this code! ??
However, putting the OP’s code in page.php or functions.php within my theme’s folder does nothing. How would one go about using this code?
Right now my page code looks like this:
<?php
if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php echo get_the_content(); ?>
<?php wp_link_pages(array('before' => '', 'after' => '', 'next_or_number' => 'number')); ?>
<?php endwhile; endif; ?>
which works great, except for plugins aren’t working when I add them to a page. Any help would be most appreciated.
-Jon