tecnosh
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Images not showing up in post.Check the Permissions on cache folder of the wpomatic. You need to allow the display.
Forum: Fixing WordPress
In reply to: Add a line to your contact box & change a page nameAbout the contact, do you use any SEO plugin? The email, what are you using?
Forum: Fixing WordPress
In reply to: Can’t edit links (blogroll)what kind of link are trying to add?
are you linking with the HTTP:// ?
Forum: Fixing WordPress
In reply to: Prevent Duplicate Contentsammy, just ask man.
Otto, how I get the post ID instant of query_posts(‘showposts=8’); ?
I ask that because on the post (single.php) i have 3 categorys listing 5 posts too.. and would like to not duplicated on post.one more time, many thanks man.
Forum: Plugins
In reply to: Next page navigation doesn’t workthis works in every page template.. but not on index. someone knows why?
Forum: Fixing WordPress
In reply to: paging.. maybe simple but can’t get working.<?php $paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1; ?>
<?php query_posts(‘showposts=8&paged=$paged’); ?>this on index, still not working.
any one with ideas?Forum: Fixing WordPress
In reply to: paging.. maybe simple but can’t get working.tried this: https://weblogtoolscollection.com/archives/2008/04/19/paging-and-custom-wordpress-loops/
still showing the home instante the next posts on page 2 and the next on 3, etc.
Forum: Fixing WordPress
In reply to: paging.. maybe simple but can’t get working.hey Saurus thanks for you reply.
Hm, i have this on archives.php
<?php get_header(); ?>
<div id=”content” class=”container”>
<div id=”front” class=”column_main”>
<div class=”category_header”>
<h1>Archives</h1>
</div>
<?php query_posts(‘showposts=0’); ?> <!– List all entries ever written –>-
<?php while (have_posts()) : the_post(); ?>
and can’t find any problem.. the ” ‘showposts=0’) ” don’t seems to be the cause of the lack of paging.
Forum: Fixing WordPress
In reply to: WordPress just stopped workingany update on sql or other server structure?
Forum: Fixing WordPress
In reply to: Prevent Duplicate ContentTested on 2.6 and it works. Thanks Otto.
Forum: Fixing WordPress
In reply to: Prevent Duplicate Contentyou know any way do to this without that new parameter?
Forum: Fixing WordPress
In reply to: Prevent Duplicate ContentHm, it works but in the reverse way.. at the bottom loop the only one that appear in that categorie is the duplicated.
Will search if the cause its wordpress 2.5. Haven’t download 2.6 yet.
Forum: Fixing WordPress
In reply to: Prevent Duplicate ContentThe hard part is that the 6 bottom categories loops have to see if any of the 8 last posts are in her categories, if its true exclude that post and get the last-last one.
Sounds weird?
Forum: Fixing WordPress
In reply to: Prevent Duplicate ContentHei Otto. Thanks for your help man.
First loop that show the last 8 posts:
<?php get_header(); ?> <div id="content" class="container"> <div id="front" class="column_main"> <?php query_posts('showposts=8'); ?> <?php while (have_posts()) : the_post(); ?> <h1><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1>
And the loop that are repeated 6 times for the 6 diffrent categories is:
<div class="column_left_b"> <!-- The 1st of the 3 columns with the featured articles at the bottom left --> <?php query_posts('showposts=1&cat=3'); ?> <!-- Edit the cat= part to the number of the desired category (check the category IDs in your WordPress system), and this will show the 1st of the chosen category --> <?php while (have_posts()) : the_post(); ?> <h2><?php the_category(', '); ?><i> - <?php the_time('M j, Y G:i'); ?> - <a href="<?php the_permalink() ?>#commenting" title="Ir para Comentários."><?php comments_number('0 Comentários','1 Comentário','% Comentários'); ?></a></i></h2> <h1><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1>
Forum: Fixing WordPress
In reply to: Making a “contact” pageBlackMICA creat a page named “contact” and fill it with your information, name, contact, etc. To add the form use one of those 2 plugins koks write.
Both are very good and simple to set up.