Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function post_excerpt_center(){
- if ( is_post_type_archive() ) {
- ?>
- <script>
- function countLines() {
- const el =
- document.querySelectorAll('.wp-block-post-excerpt__excerpt');
- el.forEach( function(excerpt){
- var divHeight = excerpt.offsetHeight;
- var para = window.getComputedStyle(excerpt);
- var lineHeight = parseInt(para.getPropertyValue('line-height'));
- var lines = divHeight / lineHeight;
- if ( lines <= 2 ) {
- excerpt.style.textAlign = 'center';
- }
- });
- }
- countLines();
- </script>
- <?php
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement