目前我使用的是shorocdes
add_filter( \'post_row_actions\', \'remove_row_actions\', 10, 1 );
function remove_row_actions( $actions )
{
if( get_post_type() === \'post\' )
unset( $actions[\'edit\'] );
return $actions;
}
用于从已发布的帖子中删除编辑链接,但此代码应用于所有帖子状态,我只想将此筛选器应用于已发布和挂起的帖子。有人能帮我将此过滤器仅应用于已发布和挂起的帖子,而不是所有帖子吗