如何在个人资料页面中显示由用户添加的电影?

时间:2013-04-15 作者:Batman

如何在个人资料页面中显示编辑器添加的电影,我提到用户(编辑器)具有添加电影的功能。

我应该用质询?使用args?

我提到,post\\u类型是“post”,用于电影//////“预告片”,用于预告片

我想在个人资料用户页面上获取电影和预告片。我该怎么做?

----------------------------------- UPDATED -------------------
    <?php
    global 
    $current_user; 
    $current_user = wp_get_current_user();
    $recentPosts = new WP_Query();
    $recentPosts->query(array(
        \'author\' => $current_user->ID,
        \'post_type\' => \'post\'));
    ?>
    <?php while ($recentPosts->have_posts()) : $recentPosts->the_post(); ?>

    <div class="bposter">
    <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__(\'Film %s\'), the_title_attribute(\'echo=0\')); ?>">
    <img src="/scripts/timthumb.php?src=<?php the_field(\'img\'); ?>&h=120&w=90&zc=1" alt="" title="<?php the_title(); ?>" /></a>
    <div class="bpt"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__(\'Permanent Link to %s\', \'kubrick\'), the_title_attribute(\'echo=0\')); ?>">
    <?php the_title(); ?>
    </a></div>
    </div>
    <?php endwhile; ?>
    </div>
----------------------------------- UPDATED -------------------
这是一张照片http://s12.postimg.org/ssacplu3x/filme.jpg谢谢

1 个回复
最合适的回答,由SO网友:s_ha_dum 整理而成

如何检索所有电影,我只检索管理员设置中设置的数量。我怎样也能检索页面

假设$current_user->ID 现在是正确的,从您的评论来看似乎是正确的。

$recentPosts = new WP_Query();
$recentPosts->query(
    array(
        \'author\' => $current_user->ID,
        \'post_type\' => array(\'post\',\'trailers\'), // pull both posts and trailers
        \'showposts\' => -1, // show all posts
        \'ignore_sticky_post\' => true // my addition, seems like a good idea
    )
);

参考

https://codex.wordpress.org/Class_Reference/WP_Query#Parameters

结束

相关推荐

有没有可能导致wp_USERS表消失的已知错误?

我管理许多WordPress支持的网站。其中一个网站是新的,自一个月前成立以来一直保持原样。今天,我尝试登录,但无法做到-我所有的登录尝试都被拒绝。经过调查,我发现wp_users 缺少表。所有其他表格都存在,博客功能齐全。数据库中的任何条目或任何文件均未表明存在任何形式的黑客行为。我明天就要休假了,这让我有点担心,因为我是唯一负责这些网站的人。当然,我已经更改了所有密码,我可能会重新安装代码库,但我想知道是否有任何常见的bug可能导致这种情况?运行的WP版本为3.4.1。值得注意的安装插件包括WP Su