fauzanjeg

Fix Breadcrumb on RTL AMP mode

Nov 2nd, 2021 (edited)
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. /* Fix Breadcrumb on RTL AMP mode */
  2. function fix_breadcrumb_rtl_amp() {
  3.     ?>
  4.     /* Fix Breadcrumb on RTL AMP mode */
  5.     #breadcrumbs .fa-angle-right:before {
  6.         content: '\f104';
  7.     }
  8.     <?php
  9. }
  10. add_action( 'amp_post_template_css', 'fix_breadcrumb_rtl_amp' );
Add Comment
Please, Sign In to add comment