Aqui está uma função que eu tenho:
/**
* is_edit_page
* function to check if the current page is a post edit page
*
* @author Ohad Raz <[email protected]>
*
* @param string $new_edit what page to check for accepts new - new post page ,edit - edit post page, null for either
* @return boolean
*/
function is_edit_page($new_edit = null){
global $pagenow;
//make sure we are on the backend
if (!is_admin()) return false;
if($new_edit == "edit")
return in_array( $pagenow, array( 'post.php', ) );
elseif($new_edit == "new") //check for new post page
return in_array( $pagenow, array( 'post-new.php' ) );
else //check for either new or edit
return in_array( $pagenow, array( 'post.php', 'post-new.php' ) );
}
Uso
O uso é simples, como qualquer outra tag condicional, alguns exemplos:
verifique se há uma página nova ou editada:
if (is_edit_page()){
//yes its an edit/new post page
}
verifique se há nova página de postagem:
if (is_edit_page('new')){
//yes its an new post page
}
verifique a edição da página de postagem:
if (is_edit_page('edit')){
//yes its an new post page
}
combine isso com um $typenow
global para verificar uma página de edição específica do tipo de postagem:
global $typenow;
if (is_edit_page('edit') && "Post_Type_Name" == $typenow){
//yes its an edit page of a custom post type named Post_Type_Name
}
is_admin
;). Tem mais?Eu prefiro
get_current_screen()
, pois é muito mais simples:( Codex )
fonte
Eu queria
enqueue script
estyles
somente emnew/edit
telas específicas de tipo de postagem. Criou uma função para verificar se estou naedit/new-post
tela do dadoCPT
.Para usar a função, passe o nome do tipo de postagem.
fonte
eu tenho essa função
que retorna verdadeiro na página de edição e falso nas outras páginas ...
fonte