Answers for "wp post type get slug"

PHP
1

wordpress get post slug

<?php
    global $post;
    $post_slug = $post->post_name;
?>
Posted by: Guest on August-17-2021
1

wordpress get post type

// Retrieves the post type of the current post or of a given post.
get_post_type( int|WP_Post|null $post = null )
Posted by: Guest on February-19-2021

Browse Popular Code Answers by Language