Making WordPress.org

Changeset 14467


Ignore:
Timestamp:
06/11/2025 03:41:10 PM (8 months ago)
Author:
paulkevan
Message:

Plugins: update order of home, increase to 6 items/section.

As per: https://github.com/WordPress/wordpress.org/pull/493.

Location:
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins-2024
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins-2024/build/blocks/front-page/render.php

    r13767 r14467  
    88
    99$sections = array(
    10     'blocks'    => __( 'Block-Enabled plugins', 'wporg-plugins' ),
    1110    'featured'  => __( 'Featured plugins', 'wporg-plugins' ),
    1211    'beta'      => __( 'Beta plugins', 'wporg-plugins' ),
    1312    'favorites' => __( 'My favorites', 'wporg-plugins' ),
    1413    'popular'   => __( 'Popular plugins', 'wporg-plugins' ),
     14    'blocks'    => __( 'Block-Enabled plugins', 'wporg-plugins' ),
    1515);
    1616
     
    3636            'post_type'      => 'plugin',
    3737            'post_status'    => 'publish',
    38             'posts_per_page' => 4,
     38            'posts_per_page' => 6,
    3939            'browse'         => $browse,
    4040        );
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins-2024/src/blocks/front-page/render.php

    r13767 r14467  
    88
    99$sections = array(
    10     'blocks'    => __( 'Block-Enabled plugins', 'wporg-plugins' ),
    1110    'featured'  => __( 'Featured plugins', 'wporg-plugins' ),
    1211    'beta'      => __( 'Beta plugins', 'wporg-plugins' ),
    1312    'favorites' => __( 'My favorites', 'wporg-plugins' ),
    1413    'popular'   => __( 'Popular plugins', 'wporg-plugins' ),
     14    'blocks'    => __( 'Block-Enabled plugins', 'wporg-plugins' ),
    1515);
    1616
     
    3636            'post_type'      => 'plugin',
    3737            'post_status'    => 'publish',
    38             'posts_per_page' => 4,
     38            'posts_per_page' => 6,
    3939            'browse'         => $browse,
    4040        );
Note: See TracChangeset for help on using the changeset viewer.