thetvstop
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 500 ErrorThey added something called FCGI handeler which fixed that issue.
Forum: Themes and Templates
In reply to: wp_count_postshttps://www.thetvstop.com/watch/ if you look at the TOP TV SHOWS, section on top you will see how I am trying to display post counts.
For some reason the default <?php count_posts(); ?> works to count the total number of posts.
However, the <?php count_posts(‘pages’); ?> function does not work. Any clues?
so where is the plugin creator or something? I mean this is a huge blow to my site. I have de-activated all other plugins, and re-added the gallery and nothing works.. what gives?
nobody has any tips on fixing this issue?
anybody?
Forum: Themes and Templates
In reply to: Display Img and title based on Taganybody?
Forum: Themes and Templates
In reply to: Display Img and title based on Tagokay I got category specific post titles to display how I want them,
https://www.thetvstop.com/fox/terminator-the-sarah-connor-chronicles/terminator-the-sarah-connor-chronicles-behind-the-scenes-pictures/ under recent full episodes.. how do I make the first image of each post show, with the title under neath it.
<div class="singlepost"> <div class="singlepostloop"> <?php $topbox = get_posts('numberposts=4&category=568'); foreach($topbox as $post) : setup_postdata($post); ?> <h2> <a href="<?php the_permalink(); ?>" id="post-<?php the_ID(); ?>"> <?php the_title(); ?></a></h2> <?php endforeach; ?> </div> </div>
is my current code.
Forum: Plugins
In reply to: [Plugin: NextGEN Custom Fields] custom fields not linking to postit’s still not working. https://www.thetvstop.com/cbs/ghost-whisperer/ghost-whisperer-season-five-episode-5-01-birthday-presence-promotional-photos/ click on the album with 5 images. all it does it take you to the top of the specific post you are viewing.
Forum: Plugins
In reply to: [Plugin: NextGEN Custom Fields] custom fields not linking to posti did this and it didnt work. perhaps should I also edit the album file with the same, since I am displaying albums?
Forum: Themes and Templates
In reply to: How do I make page-specific Sidebars?If you wish to do this manually you can do something like this:
<?php if (is_page(array ('2759','2785','2788','2792','4180'))) { include(TEMPLATEPATH . '/sidebar/pagespecificside.php'); }elseif (is_page(array('2857','36'))) { include (TEMPLATEPATH . '/sidebar/pagespecificside.php'); }else{ include(TEMPLATEPATH . '/sidebar.php'); } ?>
Change pagespecificside.php to the name of your php file, also change /sidebar/ to the directory in which your new sidebar is.
Forum: Themes and Templates
In reply to: Creating a colored box as a posting<div class="post-bodycopy clearfix"><p style="text-align: center;"><em>The person who gets the farthest is generally the one who is willing to do and dare. The sure-thing boat never gets far from shore.”<br /></em><b>–Dale Carnegie</b></p> </div>
Add this in index.php right before <div class=”post-bodycopy clearfix”> begins in your theme.
Forum: Themes and Templates
In reply to: Creating a colored box as a postingJust put the quote in a box above the wordpress loop.
Forum: Themes and Templates
In reply to: How do I make page-specific Sidebars?Do you mean page specific or category specific? There is a difference.
Forum: Themes and Templates
In reply to: Display Img and title based on TagOkay. but how do I get the thumb and title of the last four post to show in that section?
Forum: Themes and Templates
In reply to: Display Img and title based on Taganybody?