我是WordPress的新手并且通过实施来学习。今天,我使用res = np.where(x > 0.3)
res[0] += 1 # adds one to every element of res[0] thanks to broadcasting
res[1] += 1
list(zip(*res))
为自定义帖子类型创建了一个档案列表。列表很好!
wp_get_archives
现在我遇到了两件事,不知道如何解决它们!
[A]
我想要完成的任务:
我希望实现这样的功能:当某人点击列表中的某个项目时,它会将他带到另一个页面,其中仅列出了该期间的帖子。
发生了什么:
WordPress将我带回网站的主页。
如何判断WordPress转到某个页面并显示该期间的帖子。帖子也可以是自定义帖子类型。
[B]
我想要什么
使用自定义帖子类型为每个项目传递($args = array(
'type' => 'monthly',
'limit' => '15',
'format' => 'html',
'before' = '',
'after' => '',
'show_post_count' = true,
'echo' => true,
'order' => 'DESC',
'post_type' => 'travelog'
);
wp_get_archives($args);
)链接,如'post_type' => 'travelog'
我得到的是什么
它就像http://local.tourplanner.com/2017/03/travelog
但是,使用http://local.tourplanner.com/2017/03/?post_type=ravelog
时,没有添加任何查询字符串,它们看起来像'post_type' => 'post'
如果可能的话,我很乐意在不使用任何插件的情况下实现这一目标 期待您的建议。