| Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/ |
| Current File : /home/x/b/o/xbodynamge/namtation/wp-content/FaqPage.php.tar |
xbodynamge/namtation/wp-content/plugins/all-in-one-seo-pack/app/Common/Standalone/Blocks/FaqPage.php0000644 00000001075 15113677564 0030332 0 ustar 00 home <?php
namespace AIOSEO\Plugin\Common\Standalone\Blocks;
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* FaqPage Block.
*
* @since 4.2.3
*/
class FaqPage extends Blocks {
/**
* Register the block.
*
* @since 4.2.3
*
* @return void
*/
public function register() {
aioseo()->blocks->registerBlock( 'aioseo/faq',
[
'render_callback' => function( $attributes, $content ) {
if ( isset( $attributes['hidden'] ) && true === $attributes['hidden'] ) {
return '';
}
return $content;
},
]
);
}
} home/xbodynamge/dev/wp-content/plugins/all-in-one-seo-pack/app/Common/Standalone/Blocks/FaqPage.php 0000644 00000001075 15114323002 0027145 0 ustar 00 <?php
namespace AIOSEO\Plugin\Common\Standalone\Blocks;
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* FaqPage Block.
*
* @since 4.2.3
*/
class FaqPage extends Blocks {
/**
* Register the block.
*
* @since 4.2.3
*
* @return void
*/
public function register() {
aioseo()->blocks->registerBlock( 'aioseo/faq',
[
'render_callback' => function( $attributes, $content ) {
if ( isset( $attributes['hidden'] ) && true === $attributes['hidden'] ) {
return '';
}
return $content;
},
]
);
}
}