/*
Theme Name: Lestin
Theme URI: https://gaviaspreview.com/wp/lestin/
Author URI: https://themeforest.net/user/gavias
Author: Gaviasthemes Team
Description: The 2023 theme for WordPress is a fully responsive theme that looks great on any device.
Version: 1.1.7
Tested up to: 5.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, right-sidebar, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, sticky-post, theme-options, translation-ready
Text Domain: lestin

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
.wp-caption-text{
   font-weight: 400;
   font-size: 14px;
   font-style: italic;
   color: #3f3836;
}
.gallery-caption{
   font-weight: 500;
}
.bypostauthor{
   text-align: left;
}
.job-hizmetler {
    list-style-type: disc;
    margin-left: 20px;
    padding: 0;
    font-size: 16px;
    color: #333;
}
// Firma Hizmetleri alanı ekle
add_filter( 'job_manager_job_listing_data_fields', 'enes_hizmetler_alani_ekle' );
function enes_hizmetler_alani_ekle( $fields ) {
    $fields['job']['_firma_hizmetleri'] = array(
        'label'       => __( 'Firma Hizmetleri', 'job_manager' ),
        'type'        => 'multiselect',
        'options'     => array(
            'temizlik'     => 'Temizlik',
            'tasimacilik'  => 'Taşımacılık',
            'danismanlik'  => 'Danışmanlık',
            'teknik_servis'=> 'Teknik Servis',
        ),
        'required'    => false,
        'placeholder' => 'Hizmetleri seçin',
        'priority'    => 6
    );
    return $fields;
}
