Advertisement
rdusnr

Untitled

Oct 18th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. function schema_for_contact_page() {
  2. /* Will work only for the pages where the page slug it's contact ,Contact or CONTACT */
  3. if( is_page( array( 'contact','Contact', 'CONTACT') ) ){
  4. add_filter( 'kleo_schema_org_type', function() { return 'ContactPage'; } );
  5. }
  6. }
  7. add_action( 'wp', 'schema_for_contact_page' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement