functions.php
1 |
define('site_name','株式会社ABC'); |
footer.php
1 2 3 4 5 6 7 8 |
<script> $(function(){ $('.wsp-pages-title').each(function(){ var txt = $(this).html(); $(this).html(txt.replace(/Pages/g,'<?php echo esc_html(site_name);?>')); }); }); </script> |
コメント