PHP按当前页面的作者显示WordPress帖子列表

时间:2016-02-25 18:35:28

标签: php wordpress

我不是专业编码人员,但有时我做得不错;)话虽如此,我正在尝试创建一些PHP代码以获取当前作者,然后显示x类别的WordPress帖子列表。

此代码有效但是是静态的:

<?php query_posts('cat=665&author=37&order=ASC&showposts=-1'); ?> 
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a><br>
<?php endwhile; endif; ?> code here

此代码效果很好。它显示3个帖子。

所以我创建了这段代码,使作者基于页面的作者。它有效,但只显示一个帖子。它在1 ...之后停止:(任何想法为什么?

<?php 
$author_ID = get_query_var('author');
$t = 'cat=666&author=' . $author_ID . '&order=ASC&showposts=1';
query_posts($t);
if(have_posts()) : while(have_posts()) : the_post(); ?>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a><br>
<?php endwhile; endif; ?>

1 个答案:

答案 0 :(得分:0)

更改

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">



    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal">

        <ImageView
            android:id="@+id/imageViewGif"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:adjustViewBounds="true"
            android:scaleType="fitCenter"
            android:minWidth="300dp"
            android:visibility="visible" />
    </LinearLayout>

    <ProgressBar
        android:id="@+id/progressBarSearchedGif"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true" />

</RelativeLayout>

$t = 'cat=666&author=' . $author_ID . '&order=ASC&showposts=1';