HEX
Server: Apache
System: Linux webm005.cluster121.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: adventp (418412)
PHP: 7.4.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/adventp/www/wp-content/themes/brooklyn/unite-custom/css/post.php
<?php

if ( ! defined( 'ABSPATH' ) ) exit;

if( !class_exists( 'UT_Single_Post_CSS' ) ) {

    class UT_Single_Post_CSS extends UT_Custom_CSS {

        public function custom_css() {

            if( !is_singular('post') ) {

                return;

            }

            ob_start(); ?>

            <style id="ut-single-post-custom-css" type="text/css">

                #ut-sitebody.single-post .tags-links,
                #ut-sitebody.single-post .entry-header .single-post-entry-title,
                #ut-sitebody.single-post .entry-header .single-post-entry-sub-title {
                    text-align: <?php echo ut_collect_option('ut_post_title_align', 'left', 'ut_'); ?> ;
                }

            </style>

            <?php

            /* output css */
            echo ut_safe_output( $this->minify_css( ob_get_clean() ) );


        }

    }

}