mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 22:30:04 +00:00
Taxonomy: Introduce the is_term_publicly_viewable() function.
This is the taxonomy term counterpart to the `is_post_publicly_viewable()` function. Although the logic for terms is more straight forward this serves the same purpose as introducing the corresponding function for posts -- to centralise and reduce the logic needed to validate a term and determine if it's publicly viewable. Props peterwilsoncc, costdev, johnbillion Fixes #56215 git-svn-id: https://develop.svn.wordpress.org/trunk@53893 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -809,7 +809,7 @@ function wp_admin_bar_edit_menu( $wp_admin_bar ) {
|
||||
);
|
||||
} elseif ( 'term' === $current_screen->base && isset( $tag ) && is_object( $tag ) && ! is_wp_error( $tag ) ) {
|
||||
$tax = get_taxonomy( $tag->taxonomy );
|
||||
if ( is_taxonomy_viewable( $tax ) ) {
|
||||
if ( is_term_publicly_viewable( $tag ) ) {
|
||||
$wp_admin_bar->add_node(
|
||||
array(
|
||||
'id' => 'view',
|
||||
|
||||
Reference in New Issue
Block a user