// =========================================================================
// CRUNCHYROLL-STYLE AUTO-DEPLOYING HOMEPAGE ENGINE
// Shortcode:

Gintama Season 2

9.02 Rank #11 Spring 2011 51 Episodes
Action Comedy Sci-Fi
After a one-year hiatus, Shinpachi Shimura returns to Edo, only to stumble upon a shocking surprise: Gintoki and Kagura, his fellow Yorozuya members, have become completely different characters! Fleeing from...

One Piece

8.73 Rank #55 Fall 1999
Action Adventure Fantasy
Barely surviving in a barrel after passing through a terrible whirlpool at sea, carefree Monkey D. Luffy ends up aboard a ship under attack by fearsome pirates. Despite being a...

Chainsaw Man – The Movie: Reze Arc

9.07 Rank #4 1 Episodes
Action Fantasy
Despite the immediate challenges following becoming a devil hunter with the Public Safety Bureau, Denji has quickly adapted to his new life and responsibilities. As the chaos of Denji's first...

Kill Blue

7.53 Rank #2092 Spring 2026 12 Episodes
Action Comedy
Juuzou Oogami is a legendary hitman who has never failed an assignment, no matter how impossible. One day, after wiping out a powerful organization, he is stung by a mysterious...
7.61 Rank #1778 Summer 2024 25 Episodes
Action Adventure Fantasy
For over one hundred years, a special quest has been waiting for a wizard skilled enough to complete it. On the northern continent of Guiltina, there are five immensely powerful...

// =========================================================================

add_shortcode( ‘animesuki_homepage’, ‘animesuki_crunchyroll_home_builder’ );
function animesuki_crunchyroll_home_builder() {
ob_start();
?>

‘category’,
‘hide_empty’ => true,
‘number’ => 6, // Shows up to 6 different category rows
‘orderby’ => ‘count’,
‘order’ => ‘DESC’
) );

if ( ! empty( $home_categories ) && ! is_wp_error( $home_categories ) ) {
foreach ( $home_categories as $cat ) {

// Query posts for this specific category
$cat_query = new WP_Query( array(
‘post_type’ => ‘post’,
‘cat’ => $cat->term_id,
‘posts_per_page’ => 15, // Load up to 15 anime per sliding row
‘post_status’ => ‘publish’
) );

if ( $cat_query->have_posts() ) {
?>


No categories or anime found. Start adding posts with MAL Importer!

‘;
}
?>