__( 'Doc Category Archive', 'textdomain' ), // 'description' => _x( 'This is my first block pattern', 'Block pattern description', 'textdomain' ), // 'content' => '
A Simple Doc Category Archive
', // 'categories' => array( 'text' ), // 'keywords' => array( 'cta', 'demo', 'example' ), // 'viewportWidth' => 800, // ) // ); /** * Intiate the BetterDocs Plugin * * @since 2.5.0 * @return \WPDeveloper\BetterDocs\Plugin */ function betterdocs() { /** * Remove PRO Functionalities if pro is not updated. */ if( ! function_exists('betterdocs_pro') ){ remove_action( 'betterdocs_init', 'run_betterdocs_pro' ); } return \WPDeveloper\BetterDocs\Plugin::get_instance(); } /** * Initialize BetterDocs (Free) * Here, begins the execution of the plugin. * * Returns the main instance of BetterDocs. * * @since 3.0 * @return \WPDeveloper\BetterDocs\Plugin */ betterdocs();