wordpress set category front end

  1. Go to your WordPress dashboard and click on "Appearance" and then "Editor."
  2. Find and click on the "functions.php" file on the right side of the screen.
  3. Insert the following code at the end of the "functions.php" file:
function category_page_shortcode() {
    ob_start();
    // Add your category page display code here
    return ob_get_clean();
}
add_shortcode('category_page', 'category_page_shortcode');
  1. Click on the "Update File" button to save the changes.
  2. Now, create a new page in WordPress and add the following shortcode to display the category page:
[category_page]