AJNetwork
Forum Replies Created
-
Got it! I just had things in the wrong order, it works like this:
<?php query_posts(‘cat=22’); ?>
<?php if ( is_single(‘1’) ); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; endif; ?>
<?php wp_reset_query(); ?>??
or perhaps the job could be much easier with a related posts plugin showing the excerpt cause all i need are the keywords to be there anyways, seeing if i can get this to work, but if anybody knows what to do here please let me know.
thanks,
AJForum: Fixing WordPress
In reply to: site went from perfect to destroyed and I dont know howdon’t judge by what you saw, check it out now I got everything back in place ??
panic attack over, lesson of the day: back up your files!
Forum: Fixing WordPress
In reply to: site went from perfect to destroyed and I dont know howya im taking snippets from the new files and editing them into the originals, and checking one by one to see what the cause of the problem is i havent ran into it yet.
Forum: Fixing WordPress
In reply to: site went from perfect to destroyed and I dont know hownot seein it, is it root as in before the domain folder or root like the public_html
Forum: Fixing WordPress
In reply to: site went from perfect to destroyed and I dont know howwhere is that?
Forum: Fixing WordPress
In reply to: site went from perfect to destroyed and I dont know howmaybe i accidentally deleted an important div or something but i think would have noticed that. im baffled right now as I compare the original index.php to the one ive been building for a month and I’m not seeing whats making it come back 500 internal server error.
Forum: Fixing WordPress
In reply to: Need help with paginationI did it very easily without having to touch functions, thanks seacoast what an awesome plugin, I uploaded the one called wp-navi style to to easily change the css but i liked how i had it so just migrated the css to the pagenavi-css.css in the plugin folder.
It looks exactly how I pictured it in my mind!
https://s24.postimage.org/drmfpfto5/newnavi.gifresolved ??
Forum: Fixing WordPress
In reply to: Need help with paginationoh wow this is pretty straight forward so far, I just have to replace:
<?php if (function_exists(“pinblue_pagination”)) {
pinblue_pagination();
} elseif (function_exists(“pinblue_content_nav”)) {
pinblue_content_nav( ‘nav-below’ );
}?>with:
<?php wp_pagenavi(); ?>
then mess around with CSS.
Forum: Fixing WordPress
In reply to: Need help with paginationok seacoast im gonna mess with it a bit and see what i can come up with, but if I have to start all over from scratch with it, it might be easier to just figure out how to successfully use the snippet ‘show all’ => “True” I just don’t know where to put it and how to use the array $args properly.