你好我試圖讓我在這裏的靜態WordPress的頁面看到靜態頁面WordPress的鏈接到職位
鏈接到所顯示的帖子。但是,它們只是鏈接到瀏覽器中的文件目錄而不是帖子。
這是工作之前,它只會鏈接到wordpress主題的帖子,但現在甚至不工作。
我在一週內沒有碰到代碼,我把它留在上面提到的狀態,它會鏈接到wordpress主題。
下面是我用從WordPress的獲取信息的靜態頁面的代碼 -
<?php
// set up or arguments for our custom query
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$query_args = array(
'post_type' => 'post',
'paged' => $paged
);
// create a new instance of WP_Query
$the_query = new WP_Query($query_args);
?>
<?php if ($the_query->have_posts()) : while ($the_query->have_posts()) : $the_query->the_post(); // run the loop ?>
<article>
<h2><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div class="entry">
<?php the_content(); ?>
</div>
<small><?php the_time('F jS, Y'); ?> by <?php the_author_posts_link(); ?></small>
<hr>
</article>
<?php endwhile; ?>
<?php if ($the_query->max_num_pages > 1) { // check if the max number of pages is greater than 1 ?>
<nav class="prev-next-posts">
<div class="prev-posts-link">
<?php echo get_next_posts_link('Older Entries', $the_query->max_num_pages); // display older posts link ?>
</div>
<div class="next-posts-link">
<?php echo get_previous_posts_link('Newer Entries'); // display newer posts link ?>
</div>
</nav>
<?php } ?>
<?php else: ?>
<article>
<h1>Sorry...</h1>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
</article>
<?php endif; ?>
基本上,我試圖做的是得到它,所以當我點擊後它需要我到帖子。不是文件目錄。
任何幫助表示讚賞。謝謝。
我正在使用xubuntu 16.04_LTS incase,它與wordpress中的兼容性有關。
我有固定鏈接設置如圖
將wordpress安裝在子目錄中可能會很痛苦。我建議使用子域代替。例如。 mainsite.auroraservers.org。如果這不是possibe然後按照說明[這裏](https://codex.wordpress.org/Giving_WordPress_Its_Own_Directory) – andrew