umdechai
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Forum: Fixing WordPress
In reply to: Display post title from page slugI was able to do it with multiple loops in my navbar, and query_posts. Is that a good idea? It works, but I’m not sure if there’s a better way. It seems like an awful lot of code.
<ul class="nav"> <li> <?php query_posts('name=first-link&posts_per_page=1'); ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <a href="#how"> <?php the_title() ;?> </a> <?php endwhile; else: ?> <?php endif; wp_reset_query(); ?> <?php rewind_posts(); ?> </li> <li> <?php query_posts('name=second-link&posts_per_page=1'); ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <a href="#logistics"> <?php the_title() ;?> </a> <?php endwhile; else: ?> <?php endif; wp_reset_query(); ?> <?php rewind_posts(); ?> </li> <li> <?php query_posts('name=third-link&posts_per_page=1'); ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <a href="#who"> <?php the_title() ;?> </a> <?php endwhile; else: ?> <?php endif; wp_reset_query(); ?> <?php rewind_posts(); ?> </li> <li> <?php query_posts('name=fourth-link&posts_per_page=1'); ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <a href="#tips"> <?php the_title() ;?> </a> <?php endwhile; else: ?> <?php endif; wp_reset_query(); ?> <?php rewind_posts(); ?> </li> </ul>
Forum: Fixing WordPress
In reply to: Display post title from page slugHi, thanks for your reply.
<ul class="nav"> <li><a href="#how"> <?php $page = get_page_by_path('first-link'); echo get_the_title($page->ID); ?> </a></li> <li><a href="#how"> <?php $page = get_page_by_path('second-link'); echo get_the_title($page->ID); ?> </a></li> </ul>
I tried the code above but it’s just displaying the title of my most recent post for both
<li>
items.Forum: Fixing WordPress
In reply to: 403 Forbidden ErrorI can’t see the folder to reset the permissions. I would need to be able to connect to my site, which I can’t do for some reason. Otherwise, all I can see are local files, and I can’t change those permissions, can I?
Viewing 3 replies - 1 through 3 (of 3 total)