/ Published in: PHP
This snippet is great for someone creating a wp theme which supports RTL as well as LTR since in enables you to use one function for multiple instances.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function fright() { if(is_rtl()) {echo 'fright';} else {echo 'fleft';} } function fleft() { if(is_rtl()) {echo 'fleft';} else {echo 'fleft';} }
URL: http://goo.gl/x36Dr