Advertisement
jaideep06

article body

Jan 7th, 2025
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.55 KB | None | 0 0
  1. add_action( 'rank_math/vars/register_extra_replacements', function(){
  2.     rank_math_register_var_replacement(
  3.         'articleBody', [
  4.             'name'        => esc_html__( 'Article Body', 'rank-math' ),
  5.             'description' => esc_html__( 'Output the content.', 'rank-math' ),
  6.             'variable'    => 'articleBody',
  7.             'example'     => articleBody_callback(),
  8.         ],
  9.         'articleBody_callback'
  10.     );
  11. });
  12.  
  13. function articleBody_callback() {
  14.     $body = wp_strip_all_tags(get_the_content());
  15.     return substr($body, 0, 400);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement