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

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...
7.72 Rank #1405 Summer 2019 24 Episodes
Action Fantasy Sci-Fi
Spontaneous Human Combustion: a chaotic phenomenon that has plagued humanity for years, randomly transforming ordinary people into flaming, violent creatures known as Infernals. While Infernals make up the first-generation accounts...
6.59 Rank #7665 Spring 2026 12 Episodes
Comedy Fantasy
The third season of Jidou Hanbaiki ni Umarekawatta Ore wa Meikyuu wo Samayou.

Assassination Classroom Second Season

8.47 Rank #177 Winter 2016 25 Episodes
Action Comedy
Returning from their summer vacation, the students of Class 3-E at the prestigious Kunugigaoka Middle School find themselves up against unbeatable odds. Faced with the possibility of world annihilation, the...

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

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!

‘;
}
?>