我可以使用什么挂钩/过滤器来添加/编辑/显示/隐藏表视图上链接下(悬停时)的标题?

时间:2015-09-03 作者:gdaniel

我不完全确定这些链接的名称,但该类称为“行操作”。

enter image description here

1 个回复
最合适的回答,由SO网友:czerspalace 整理而成

您将要使用post_row_actions 滤器https://developer.wordpress.org/reference/hooks/post_row_actions-2/

例如,要添加链接,可以尝试以下操作:

function add_custom_link($actions, $page_object)
{
    $actions[\'custom_link\'] = \'<a href="http://www.example.com">My Custom Link</a>\';

   return $actions;
}

add_filter(\'post_row_actions\', \'add_custom_link\', 10, 2);

相关推荐

绕过WP查询中的“supress_Filters”

显然,出于某种不合逻辑的原因,开发人员决定获取所有语言帖子的唯一方法是添加supress_filters=true 到WP\\u查询(而不是像这样language_code=all 选项)。无论如何,我的情况是,我需要获取所有语言的帖子,但也需要使用过滤器修改WP\\u查询。有没有办法强制将我的过滤器添加到查询中,即使supress_filters 设置为false?这是我需要添加的过滤器:add_filter( \'posts_where\', function($where, $wp_query) {