Advertisement
Konark

Untitled

Jul 1st, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.49 KB | None | 0 0
  1. class wpt_widget extends WP_Widget {
  2.  
  3.         function __construct() {
  4.  
  5.  
  6.  
  7.             // add image sizes and load language file
  8.  
  9.             add_action( 'init', array(&$this, 'wpt_init') );
  10.     }
  11.  
  12. function wpt_init() {
  13.  
  14.             load_plugin_textdomain('wp-tab-widget', false, dirname(plugin_basename(__FILE__)) . '/languages/' );
  15.  
  16.  
  17.  
  18.             add_image_size( 'wp_review_small', 65, 65, true ); // small thumb
  19.  
  20.             add_image_size( 'wp_review_large', 320, 9999, false ); // large thumb
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement