是的,您可以拥有产品的所有编辑器链接。只需对自定义帖子类型运行常规查询,在这种情况下,自定义帖子类型似乎是;“产品”;,但您应该搜索自定义帖子类型名称以运行查询。查询如下所示:
$args = array(
\'post_type\' => \'product\',
// Put more arguments if you need to
);
$query = new WP_Query($args);
if($query->have_posts()){
while($query->have_posts()) {
$query->the_post();
$post_id = get_the_id();
//This will print every editor link for your products
echo "https://domain.com/wp=admin/post.php?post=". $post_id . "&action=edit";
// You can also use the function get_edit_post_link in here
//like this: get_edit_post_link( $post_id );
}
}
我不知道你想如何使用编辑器链接,但这基本上是你需要做的事情来获取它们,然后你可以将它们存储在一个数组中,或者回显它们或任何你想要的东西。