我想您谈论的是自定义帖子类型,而不是自定义分类法。正当
如果是,请将此代码添加到functions.php
文件:
function press_this_ptype($link) {
$post_type = \'example\';
$link = str_replace(\'post-new.php\', "post-new.php?post_type=$post_type", $link);
$link = str_replace(\'?u=\', \'&u=\', $link);
return $link;
}
add_filter(\'shortcut_link\', \'press_this_ptype\', 11);
添加正确的帖子类型后,Wordpress将自动检测附加到它的所有分类法(显然,如果它们是在自定义分类法代码中指定的)。
对于不同的帖子类型,您可以有多个“按此”书签。只需更改上面代码段中的帖子类型并保存一个新的bookmarklet。