Advertisement
Barbareshet

logo_replace_when_rtl

Oct 13th, 2017
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. <?php
  2.  
  3. //to add in functions.php
  4. function logo_replace_when_rtl(){
  5.     $logo = 'url to default logo';
  6. if(is_rtl()){
  7. $logo = 'url of rtl logo';
  8. }
  9. return $logo;
  10. }
  11.  
  12. //where the logo instance shows
  13.  
  14. echo logo_replace_when_rtl();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement