Test if we are on a custom post type in wordpress


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <?php
  2. global $wp_query;
  3. $post_id = $wp_query->post->ID;
  4. $type = get_post_type(get_the_ID());
  5.  
  6. if (($type == "novedades")) {
  7. //estoy en custom post type novedades
  8. } elseif (is_single()) {
  9. //estoy en un post
  10. } elseif (is_home()) {
  11. //estoy en el home de sitio
  12. } elseif (is_page('230')) {
  13. //estoy en la pagina id 230
  14. }
  15.  
  16. else {
  17. //estoy en otro sector de WP
  18. }
  19. ?>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.