我想使用过滤器 post_row_actions 在我的帖子类型的帖子中添加自定义链接,但没有其他链接。
我使用此代码:
function custom_duplicate_link( $actions, $post ) {
$actions['duplicate'] = '<a href="admin.php?action=custom_duplicate_post_as_draft&post=' . $post->ID . '" title="Duplicate" rel="permalink">Duplicate</a>';
return $actions;
}
add_filter( 'post_row_actions', 'custom_duplicate_link', 10, 2 );
我错过了什么吗?或者有人知道它为什么不起作用吗?
答案 0 :(得分:0)
检查您的自定义帖子类型:
&#39;分层&#39; =&GT; TRUE,