You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.3 KiB
PHP
48 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* The webmaster variable template.
|
|
*
|
|
* @package RankMath
|
|
* @subpackage RankMath\Settings
|
|
*/
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
?>
|
|
<div class="cmb-row rank-math-rss-variables rank-math-exclude-from-search">
|
|
|
|
<h3><?php esc_html_e( 'Available variables', 'rank-math' ); ?> </h3>
|
|
|
|
<table class="wp-list-table widefat striped">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col"> <?php esc_html_e( 'Variable', 'rank-math' ); ?></th>
|
|
<th scope="col"><?php esc_html_e( 'Description', 'rank-math' ); ?></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>%AUTHORLINK%</td>
|
|
<td><?php esc_html_e( 'A link to the archive for the post author, with the authors name as anchor text.', 'rank-math' ); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td>%POSTLINK%</td>
|
|
<td><?php esc_html_e( 'A link to the post, with the title as anchor text.', 'rank-math' ); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td>%BLOGLINK%</td>
|
|
<td><?php esc_html_e( "A link to your site, with your site's name as anchor text.", 'rank-math' ); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td>%BLOGDESCLINK%</td>
|
|
<td><?php esc_html_e( "A link to your site, with your site's name and description as anchor text.", 'rank-math' ); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td>%FEATUREDIMAGE%</td>
|
|
<td><?php esc_html_e( 'Featured image of the article.', 'rank-math' ); ?></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
</div>
|