| Server IP : 134.76.9.14 / Your IP : 216.73.216.251 Web Server : Apache System : Linux vweb1 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64 User : ( 723990) PHP Version : 8.1.2-1ubuntu2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /web/mario.flock/www/flock-mpia/wp-content/themes/quantum-computing/inc/ |
Upload File : |
<?php
/**
* Block Styles
*
* @package quantum_computing
* @since 1.0
*/
if ( function_exists( 'register_block_style' ) ) {
function quantum_computing_register_block_styles() {
//Wp Block Padding Zero
register_block_style(
'core/group',
array(
'name' => 'quantum-computing-padding-0',
'label' => esc_html__( 'No Padding', 'quantum-computing' ),
)
);
//Wp Block Post Author Style
register_block_style(
'core/post-author',
array(
'name' => 'quantum-computing-post-author-card',
'label' => esc_html__( 'Theme Style', 'quantum-computing' ),
)
);
//Wp Block Button Style
register_block_style(
'core/button',
array(
'name' => 'quantum-computing-button',
'label' => esc_html__( 'Plain', 'quantum-computing' ),
)
);
//Post Comments Style
register_block_style(
'core/post-comments',
array(
'name' => 'quantum-computing-post-comments',
'label' => esc_html__( 'Theme Style', 'quantum-computing' ),
)
);
//Latest Comments Style
register_block_style(
'core/latest-comments',
array(
'name' => 'quantum-computing-latest-comments',
'label' => esc_html__( 'Theme Style', 'quantum-computing' ),
)
);
//Wp Block Table Style
register_block_style(
'core/table',
array(
'name' => 'quantum-computing-wp-table',
'label' => esc_html__( 'Theme Style', 'quantum-computing' ),
)
);
//Wp Block Pre Style
register_block_style(
'core/preformatted',
array(
'name' => 'quantum-computing-wp-preformatted',
'label' => esc_html__( 'Theme Style', 'quantum-computing' ),
)
);
//Wp Block Verse Style
register_block_style(
'core/verse',
array(
'name' => 'quantum-computing-wp-verse',
'label' => esc_html__( 'Theme Style', 'quantum-computing' ),
)
);
}
add_action( 'init', 'quantum_computing_register_block_styles' );
}