arbius
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: All posts link to latestI had the same problem.
Im not good in codeing, so i just deleted it.Maybe someone else can help you.
Good Luck!
Forum: Fixing WordPress
In reply to: All posts link to latestThis code can be a problem.
Do you have it in your sidebar?
<h2><?php _e('10 Latest'); ?></h2><ul>
<?php
$posts = get_posts('numberposts=10');
foreach($posts as $post) :
setup_postdata($post);
?><li><a>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>Forum: Everything else WordPress
In reply to: All post-titles links to latest postProblem solved!
The problem was that something was wrong with this sidebar-code (posting a short code here):
<h2><?php _e('10 Latest'); ?></h2>
<ul>
<?php
$posts = get_posts('numberposts=10');
foreach($posts as $post) :
setup_postdata($post);
?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>Tank you!
Forum: Everything else WordPress
In reply to: All post-titles links to latest postSorry for my long post…
It worked earlier today (yesterday).I’ll delete and reinstall now.
Thank you very very much for your help & time.
Forum: Everything else WordPress
In reply to: All post-titles links to latest postForum: Everything else WordPress
In reply to: All post-titles links to latest postSorry for the missunderstanding.
I use the permalink-type: ?p=123
And when i do a “mouse-over” on the title-links, its right.
Even the right permalink-adress shows in the adressbar, but it is the latest post that shows in the browser.
(I deleted tha cache, just incase)Hmmm….
Someone?
Forum: Everything else WordPress
In reply to: All post-titles links to latest postThat didnt help…
Is there any setting with the permalink that i missed?