对不起,我的英语不好<其次,两周以来我一直找不到解决问题的方法。这件事很简单,但我找不到怎么做
我解释我的问题:
我在函数“my\\u custom\\u init”中调用了2个自定义分类法:
register_taxonomy( \'directors\', \'video\', array( \'hierarchical\' => true, \'label\' => \'Directors\', \'query_var\' => true, \'rewrite\' => true ) );
register_taxonomy( \'clients\', \'video\', array( \'hierarchical\' => true, \'label\' => \'Clients\', \'query_var\' => true, \'rewrite\' => true ) );
我想编辑打印屏幕上的“视图”链接:http://nsa32.casimages.com/img/2012/10/18/121018025542594841.png
我想我必须使用post\\u row\\u操作来编辑它,但我无法获得分类<如果您知道如何解决我的问题,请提前感谢您的帮助。
Edit
我为我的分类“帖子”和“视频”制作了这个,它很管用!但是我不能对我的自定义分类法做同样的事情://br>我真的不明白我尝试了但没有成功:Sadd_filter( \'post_row_actions\', \'remove_row_actions\', 10, 1);
function remove_row_actions( $actions )
{
if( get_post_type() === \'post\' )
unset( $actions[\'view\'] );
if( get_post_type() === \'page\' )
unset( $actions[\'view\'] ); //doesn\'t work ?
if( get_post_type() === \'video\' )
unset( $actions[\'view\'] );
// Adding a custom link and passing the post id with it
$permalink = get_permalink();
$permalink = explode(".tv", $permalink);
$actions[\'customedit\'] = "<a href=\\"/#$permalink[1]\\" target=\\"blank\\">View & Get Url</a>";
return $actions;
}