multilanguage
1 year ago
recommendations
11 months ago
colibri.php
1 year ago
contact-form.php
1 year ago
entity.php
4 years ago
get-body-class.php
1 year ago
get-classic-page-template.php
1 year ago
get-page-query.php
1 year ago
get-page-title.php
1 year ago
get-post-content.php
1 year ago
get-post-styles.php
1 year ago
index.php
11 months ago
kubio-cloud.php
1 year ago
page-templates.php
4 years ago
save-template-parts-filter.php
1 year ago
subscribe-form.php
4 years ago
typekit.php
4 years ago
update-settings-flags.php
1 year ago
get-page-title.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | use Kubio\Blocks\PageTitleBlock; |
| 4 | use Kubio\Core\Utils; |
| 5 | use IlluminateAgnostic\Arr\Support\Arr; |
| 6 | |
| 7 | add_action( |
| 8 | 'template_redirect', |
| 9 | function () { |
| 10 | // phpcs:ignore WordPress.Security.NonceVerification.Recommended |
| 11 | if ( Arr::has( $_REQUEST, '__kubio-page-title' ) && Utils::canEdit() ) { |
| 12 | return wp_send_json_success( |
| 13 | PageTitleBlock::getTitle( true ) |
| 14 | ); |
| 15 | } |
| 16 | }, |
| 17 | PHP_INT_MAX |
| 18 | ); |
| 19 |