krysztoff
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: back-end post exists, front-end gives "page not found"Ok, so I looked for some similar posts online and saw that in some cases re-saving the permalinks in settings might help. This has resulted in a partially loaded page ( header and submenu) but all the information does not appear for some reason..
Forum: Fixing WordPress
In reply to: how to list all posts of current author in single-post page?Hello Mark,
I understand your point, but it’s thanks to @girlieworks I figured out my problem.
Just wanted to share this.Forum: Fixing WordPress
In reply to: how to list all posts of current author in single-post page?Thanks Girlieworks! I figured it out because of your link. I already had the code set with everything I needed. So I had to replace
<?php query_posts('get_related_author_posts_url'); ?>with
<?php query_posts( array( 'author' => $authordata->ID, 'post__not_in' => array( $post->ID ), 'posts_per_page' => 10 ) ); ?>works like a charm!
Forum: Fixing WordPress
In reply to: how to list all posts of current author in single-post page?Thank you!
Forum: Fixing WordPress
In reply to: how to list all posts of current author in single-post page?I just discovered that for some reason I don’t have an author.php page
I’m working on a site I personally did not develop. Is it possible to just add it from the WP template?