Advertisement
Guest User

Untitled

a guest
Nov 19th, 2019
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. // Load súboru admin-scripts.php vo WP admine (len pri post.php, nikde inde)
  2. function admin_scripts($hook) {
  3. if ('post.php' !== $hook) {
  4. return;
  5. }
  6. wp_enqueue_script('my_custom_script', '/wp-content/themes/mytheme/js/admin-scripts.js');
  7. }
  8.  
  9. add_action('admin_enqueue_scripts', 'admin_scripts');
  10.  
  11. // Obsah súboru admin-scripts.js
  12. jQuery(document).ready(function(){
  13. var val;
  14. jQuery('.quantity .view').each(function(){
  15. val = jQuery(this).text().replace(/[^0-9]/g, '');
  16. if(val != '1') {
  17. jQuery(this).parent().parent().css('background-color', '#d5f8fb');
  18. }
  19. });
  20. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement