Skip to content

Instantly share code, notes, and snippets.

@WPVNdev
Created June 30, 2021 02:46
Show Gist options
  • Save WPVNdev/56faefd7d0d3a958e8cde7a81a21ae4a to your computer and use it in GitHub Desktop.
Save WPVNdev/56faefd7d0d3a958e8cde7a81a21ae4a to your computer and use it in GitHub Desktop.
Bỏ Category Name bên trên Titlte ở trang Blog Posts Page
<?php
function removeCategoryNameInBlogPostPage($category)
{
if (is_home()) {
return false;
}
return $category;
}
add_filter('the_category', 'removeCategoryNameInBlogPostPage');
@WPVNdev
Copy link
Author

WPVNdev commented Jun 30, 2021

Trước:
screenshot_1109

Sau:
screenshot_1108

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment