我是wordpress插件开发的新手,我想创建一个插件,在创建后对帖子做一些特殊的编辑。我想在创建之后在帖子下添加一个链接(锚点)(如附图中所示),以重定向到我将创建的新页面。
我可以这样做吗?
答案 0 :(得分:1)
您可以通过为post_row_actions过滤器
创建一个钩子来实现add_filter( 'post_row_actions', 'wpse8170_row_actions', 10, 2 );
function wpse8170_row_actions( $actions, WP_Post $post ) {
if ( $post->post_type != 'my-custom-post-type' ) {
return $actions;
}
$actions['wpse8170-pdf'] = 'http://your/url/here';
return $actions;
}
阅读本文
http://pippinsplugins.com/add-custom-links-to-user-row-actions/
或阅读本文
http://www.codeforest.net/add-custom-links-to-row-actions-in-wordpress