PluginProbe
Portfolio Block – show off your work with stunning layouts / trunk
Portfolio Block – show off your work with stunning layouts vtrunk
2.1.5 2.1.3 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.0 2.1.1
portfolio-block / includes / rootPlugin / BlockCategory.php

BlockCategory.php in Portfolio Block – show off your work with stunning layouts trunk, at includes/rootPlugin/BlockCategory.php

24 lines 488 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace PFB;
3
4 if ( ! defined( 'ABSPATH' ) ) {
5 exit;
6 }
7
8 class BlockCategory {
9
10 public function __construct() {
11 add_filter( 'block_categories_all', [ $this, 'register_category' ], 10, 2 );
12 }
13
14 public function register_category( $categories, $post ) {
15
16 array_unshift( $categories, [
17 'slug' => 'portfolio',
18 'title' => __( 'Portfolio', 'portfolio-block' ),
19 ]);
20
21 return $categories;
22 }
23 }
24