自定义帖子类型存档页面WordPress的“编辑”选项

时间:2018-07-24 10:28:10

标签: php wordpress custom-post-type archive

如何在archive-products.php(“产品发布类型”页面)中添加“编辑”?目前,archive-products.php中没有编辑器,请参见屏幕截图:

enter image description here

谢谢

1 个答案:

答案 0 :(得分:0)

将此代码添加到分类文件中以显示编辑分类链接-<a href="<?php echo esc_url( get_edit_term_link( get_queried_object()->term_id, 'product_category', '' ) ); ?>">Edit Taxonomy</a>

将此代码添加到您的单个帖子文件中,以显示编辑帖子链接-<?php edit_post_link('Edit'); ?>