Aurangajeb

Change/rename text using JQuery

Mar 31st, 2022
1,759
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. <?php
  2.  
  3. add_action( 'wp_head', function () { ?>
  4. <script>
  5.  
  6.     /* write your JavaScript code here */
  7.     jQuery(document).ready(function( $ ){
  8.     // Run this code only for logged-in user   
  9.     $("td.data-column a").text(function () {
  10.         return $(this).text().replace("Preview", "View Post");
  11.     });
  12. });
  13.  
  14. </script>
  15.  
  16. <?php } );
  17.  
Advertisement
Add Comment
Please, Sign In to add comment