在帖子类型列表中添加链接

时间:2016-12-30 18:08:58

标签: wordpress custom-post-type add-filter

我想使用过滤器 post_row_actions 在我的帖子类型的帖子中添加自定义链接,但没有其他链接。

我使用此代码:

function custom_duplicate_link( $actions, $post ) {
    $actions['duplicate'] = '<a href="admin.php?action=custom_duplicate_post_as_draft&amp;post=' . $post->ID . '" title="Duplicate" rel="permalink">Duplicate</a>';
    return $actions;
}
add_filter( 'post_row_actions', 'custom_duplicate_link', 10, 2 );

我错过了什么吗?或者有人知道它为什么不起作用吗?

1 个答案:

答案 0 :(得分:0)

检查您的自定义帖子类型:

&#39;分层&#39; =&GT; TRUE,

  1. 过滤器&#39; post_row_actions&#39;仅适用于不分层的帖子类型。
  2. 过滤器&#39; page_row_actions&#39;仅适用于分层的帖子类型。