1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php /** * WPSEO plugin file. * * @package WPSEO\Admin */
if ( ! defined( 'WPSEO_VERSION' ) ) { header( 'Status: 403 Forbidden' ); header( 'HTTP/1.1 403 Forbidden' ); exit(); }
$wpseo_breadcrumbs_presenter = new WPSEO_Paper_Presenter( esc_html__( 'Breadcrumbs settings', 'wordpress-seo' ), dirname( __FILE__ ) . '/paper-content/breadcrumbs-content.php', array( 'paper_id' => 'settings-breadcrumbs', ) ); echo $wpseo_breadcrumbs_presenter->get_output();
|