add_action("mesmerize_header_background_settings", function ($section, $prefix, $group, $inner, $priority) { mesmerize_header_separator_options($section, $prefix, $group, $inner, $priority); }, 3, 5); function mesmerize_header_separator_options($section, $prefix, $group, $inner, $priority) { $priority = 4; $group = "{$prefix}_options_separator_group_button"; mesmerize_add_kirki_field(array( 'type' => 'checkbox', 'label' => esc_html__('Bottom Separator', 'mesmerize'), 'section' => $section, 'settings' => $prefix . '_show_separator', 'default' => mesmerize_mod_default($prefix . '_show_separator'), 'priority' => $priority, 'active_callback' => apply_filters('mesmerize_header_active_callback_filter', array(), $inner), )); mesmerize_add_kirki_field(array( 'type' => 'sidebar-button-group', 'settings' => $group, 'label' => esc_html__('Options', 'mesmerize'), 'section' => $section, 'priority' => $priority, 'in_row_with' => array($prefix . '_show_separator'), 'active_callback' => apply_filters('mesmerize_header_active_callback_filter', array( array( 'setting' => $prefix . '_show_separator', 'operator' => '==', 'value' => true, ), ), $inner ), )); mesmerize_add_kirki_field(array( 'type' => 'sectionseparator', 'label' => esc_html__('Bottom Separator Options', 'mesmerize'), 'section' => $section, 'settings' => $prefix . '_separator_header_separator_2', 'priority' => $priority, 'group' => $group, )); mesmerize_add_kirki_field(array( 'type' => 'select', 'settings' => $prefix . '_separator', 'label' => esc_html__('Type', 'mesmerize'), 'section' => $section, 'default' => mesmerize_mod_default($prefix . '_separator'), 'choices' => mesmerize_get_separators_list(), 'priority' => $priority, 'active_callback' => array( array( 'setting' => $prefix . '_show_separator', 'operator' => '==', 'value' => true, ), ), 'group' => $group, )); mesmerize_add_kirki_field(array( 'type' => 'color', 'settings' => "{$prefix}_separator_color", 'label' => esc_attr__('Color', 'mesmerize'), 'section' => $section, 'priority' => $priority, 'choices' => array( 'alpha' => true, ), 'default' => mesmerize_mod_default("{$prefix}_separator_color"), 'output' => array( array( 'element' => $inner ? "body .header .svg-white-bg" : ".mesmerize-front-page .header-separator .svg-white-bg", 'property' => 'fill', 'suffix' => '!important', ), ), 'transport' => 'postMessage', 'js_vars' => array( array( 'element' => $inner ? "body .header .svg-white-bg" : ".mesmerize-front-page .header-separator .svg-white-bg", 'property' => 'fill', 'suffix' => '!important', ), ), 'active_callback' => array( array( 'setting' => $prefix . '_show_separator', 'operator' => '==', 'value' => true, ), ), 'group' => $group, )); mesmerize_add_kirki_field(array( 'type' => 'color', 'settings' => "{$prefix}_separator_color_accent", 'label' => esc_attr__('Accent Color', 'mesmerize'), 'section' => $section, 'priority' => $priority, 'choices' => array( 'alpha' => true, ), 'default' => mesmerize_get_theme_colors('color2'), 'output' => array( array( 'element' => $inner ? ".mesmerize-inner-page .header .svg-accent" : ".mesmerize-front-page .header-separator path.svg-accent", 'property' => 'stroke', 'suffix' => '!important', ), ), 'transport' => 'postMessage', 'js_vars' => array( array( 'element' => $inner ? "body.page .header path.svg-accent" : ".mesmerize-front-page .header-separator path.svg-accent", 'property' => 'stroke', 'suffix' => '!important', ), ), 'active_callback' => array( array( 'setting' => $prefix . '_show_separator', 'operator' => '==', 'value' => true, ), array( 'setting' => $prefix . '_separator', 'operator' => 'in', 'value' => mesmerize_get_2_colors_separators(array(), true), ), ), 'group' => $group, )); mesmerize_add_kirki_field(array( 'type' => 'slider', 'label' => esc_html__('Height', 'mesmerize'), 'section' => $section, 'settings' => $prefix . '_separator_height', 'default' => mesmerize_mod_default($prefix . '_separator_height'), 'transport' => 'postMessage', 'priority' => $priority, 'choices' => array( 'min' => '0', 'max' => '400', 'step' => '1', ), "output" => array( array( "element" => $inner ? ".header-separator svg" : ".mesmerize-front-page .header-separator svg", 'property' => 'height', 'suffix' => '!important', 'units' => 'px', ), ), 'js_vars' => array( array( 'element' => $inner ? ".header-separator svg" : ".mesmerize-front-page .header-separator svg", 'function' => 'css', 'property' => 'height', 'units' => "px", 'suffix' => '!important', ), ), 'active_callback' => array( array( 'setting' => $prefix . '_show_separator', 'operator' => '==', 'value' => true, ), ), 'group' => $group, )); } function mesmerize_get_2_colors_separators($separators = array(), $onlyIDs = false) { $separators = array_merge( $separators, array( 'mesmerize/1.wave-and-line' => esc_html__('Wave and line', 'mesmerize'), 'mesmerize/1.wave-and-line-negative' => esc_html__('Wave and line Negative', 'mesmerize'), ) ); if ($onlyIDs) { return array_keys($separators); } return $separators; } function mesmerize_prepend_2_colors_separators($separators, $use_only_defaults) { if ($use_only_defaults) { return $separators; } return mesmerize_get_2_colors_separators($separators); } add_filter('mesmerize_separators_list_prepend', 'mesmerize_prepend_2_colors_separators', 10, 2); function mesmerize_get_separators_list($use_only_defaults = false) { $extras = array( 'mesmerize/3.waves-noCentric' => esc_html__('Wave no centric', 'mesmerize'), 'mesmerize/3.waves-noCentric-negative' => esc_html__('Wave no centric Negative', 'mesmerize'), 'mesmerize/4.clouds' => esc_html__('Clouds 2', 'mesmerize'), 'mesmerize/5.triple-waves-3' => esc_html__('Triple Waves 1', 'mesmerize'), 'mesmerize/5.triple-waves-3-negative' => esc_html__('Triple Waves 1 Negative', 'mesmerize'), 'mesmerize/6.triple-waves-2' => esc_html__('Triple Waves 2', 'mesmerize'), 'mesmerize/6.triple-waves-2-negative' => esc_html__('Triple Waves 2 Negative', 'mesmerize'), 'mesmerize/7.stright-angles-1' => esc_html__('Stright Angles 1', 'mesmerize'), 'mesmerize/7.stright-angles-1-negative' => esc_html__('Stright Angles 1 Negative', 'mesmerize'), 'mesmerize/8.stright-angles-2' => esc_html__('Triple Waves 2', 'mesmerize'), 'mesmerize/8.stright-angles-2-negative' => esc_html__('Triple Waves 2 Negative', 'mesmerize'), ); $separators = array( 'tilt' => esc_html__('Tilt', 'mesmerize'), 'tilt-flipped' => esc_html__('Tilt Flipped', 'mesmerize'), 'opacity-tilt' => esc_html__('Tilt Opacity', 'mesmerize'), 'triangle' => esc_html__('Triangle', 'mesmerize'), 'triangle-negative' => esc_html__('Triangle Negative', 'mesmerize'), 'triangle-asymmetrical' => esc_html__('Triangle Asymmetrical', 'mesmerize'), 'triangle-asymmetrical-negative' => esc_html__('Triangle Asymmetrical Negative', 'mesmerize'), 'opacity-fan' => esc_html__('Fan Opacity', 'mesmerize'), 'mountains' => esc_html__('Mountains', 'mesmerize'), 'pyramids' => esc_html__('Pyramids', 'mesmerize'), 'pyramids-negative' => esc_html__('Pyramids Negative', 'mesmerize'), 'waves' => esc_html__('Waves', 'mesmerize'), 'waves-negative' => esc_html__('Waves Negative', 'mesmerize'), 'wave-brush' => esc_html__('Waves Brush', 'mesmerize'), 'waves-pattern' => esc_html__('Waves Pattern', 'mesmerize'), 'clouds' => esc_html__('Clouds', 'mesmerize'), 'clouds-negative' => esc_html__('Clouds Negative', 'mesmerize'), 'curve' => esc_html__('Curve', 'mesmerize'), 'curve-negative' => esc_html__('Curve Negative', 'mesmerize'), 'curve-asymmetrical' => esc_html__('Curve Asymmetrical', 'mesmerize'), 'curve-asymmetrical-negative' => esc_html__('Curve Asymmetrical Negative', 'mesmerize'), 'drops' => esc_html__('Drops', 'mesmerize'), 'drops-negative' => esc_html__('Drops Negative', 'mesmerize'), 'arrow' => esc_html__('Arrow', 'mesmerize'), 'arrow-negative' => esc_html__('Arrow Negative', 'mesmerize'), 'book' => esc_html__('Book', 'mesmerize'), 'book-negative' => esc_html__('Book Negative', 'mesmerize'), 'split' => esc_html__('Split', 'mesmerize'), 'split-negative' => esc_html__('Split Negative', 'mesmerize'), 'zigzag' => esc_html__('Zigzag', 'mesmerize'), ); if ( ! $use_only_defaults) { $separators = array_merge($extras, $separators); } $prepend_separators = apply_filters('mesmerize_separators_list_prepend', array(), $use_only_defaults); $append_separators = apply_filters('mesmerize_separators_list_append', array(), $use_only_defaults); $separators = array_merge($prepend_separators, $separators, $append_separators); return $separators; } function mesmerize_print_header_separator($prefix = null) { $inner = mesmerize_is_inner(true); if ( ! $prefix) { $prefix = $inner ? "inner_header" : "header"; } $show = get_theme_mod($prefix . '_show_separator', mesmerize_mod_default($prefix . '_show_separator')); if ($show) { $separator = get_theme_mod($prefix . '_separator', mesmerize_mod_default($prefix . '_separator')); $reverse = ""; if (strpos($separator, "mesmerize/") !== false) { $reverse = strpos($separator, "-negative") === false ? "" : "header-separator-reverse"; } else { $reverse = strpos($separator, "-negative") === false ? "header-separator-reverse" : ""; } echo '
If you are looking for a more meaningful and satisfying relationship, dating a senior gay guy may be the perfect selection for you. check out regarding the benefits of dating a senior gay man:<\/p>\n
1. they are skilled<\/p>\n
many senior gay males were through plenty inside their lives, which experience has made them more learning and compassionate. they’re also more experienced worldwide, which can make for an even more satisfying relationship. 2. they truly are loyal<\/p>\n
senior gay guys are extremely faithful with their relationships. they truly are improbable to cheat for you, and they’re likely to be here for you personally through dense and thin. 3. they’re more supportive<\/p>\n
senior gay males are often more supportive than younger gay males. they truly are prone to be here available if you want them, and they’re almost certainly going to pay attention to you. 4. they’re more likely to take it easy and also a lot of power. this will alllow for a more enjoyable relationship. 5. they truly are prone to have the ability to begin to see the good in you, even if you cannot understand good in your self. 6. they truly are more likely to have the ability to see the world from a unique perspective.<\/p>\n
There are numerous senior gay dating sites available today, and additionally they all have actually different features that will make receiving love easier.some sites are especially tailored to senior singles, although some are more basic and cater to all many years.no matter what type of site you select, be sure to take care to read the pages and messages carefully to get some one you are going to really interact with.there are a couple of things you have to keep in mind whenever looking for somebody.first, be sure to look for somebody who shares your interests.this is not constantly simple, but it is important to find somebody who you can have fun with and whom you can share common values with.second, be sure to browse the website’s compatibility score.this will give you an idea of how severe each other is and if you’ll be suitable.finally, do not be afraid to message somebody that you do not think is an excellent match.sometimes the most effective matches will be the ones that you don’t think works down.if you do not get an answer immediately, do not be discouraged; it would likely just imply that anyone is not interested.senior gay dating sites are a terrific way to satisfy new people in order to find love, therefore please let them have a try!<\/p>\n
There are many benefits to dating as a senior gay man.for one, you’ll have an abundance of experience to draw on with regards to relationships.you’ll know very well what it takes to make a relationship work and you will be capable offer your lover lots of security and support.plus, you will likely have lots of knowledge to generally share in terms of dating and relationships.another benefit of dating as a senior gay man is that you’ll likely have lots of self-confidence.you’ve had time to develop your skills and talents, and you also’re likely confident in who you really are.this confidence comes into play handy if you are interested in a relationship.finally, dating as a senior gay man could be many fun.you’ll likely have some experience and you will be capable share that with your partner.you’ll likewise have countless knowledge to fairly share, which will make for an interesting conversation.<\/p>\n
Finding a young partner as a senior gay guy are a daunting task, but with a small amount of effort, it could be a very worthwhile experience. here are some ideas to assist you in finding the right young partner:<\/p>\n
1. be proactive<\/p>\n
the first step will be proactive and make the time and effort discover a young partner. if you’re shopping for a long-term relationship, you will need to start early. there are numerous online dating sites and clubs that are specifically designed for senior gay men. 2. be open-minded<\/p>\n
another important factor will be open-minded. many young partners are seeking some body with the same life style and interests. if you are ready to decide to try brand new things, you are likely to find a compatible partner. 3. show patience<\/p>\n
finally, show patience. it will take a while to get a compatible partner, but with somewhat work, it is definitely worthwhile.<\/p>\n
There are many reasons why dating wealthy senior gay men are an excellent experience.first of all of the, these men tend to be very understanding and accommodating.they know how to have a good time and generally are always up for a fresh adventure.secondly, they frequently have big money saved up, which means that they are able to give you a hand financially if you’d like it.and finally, they are generally extremely educated and cultured, meaning that they can offer countless interesting discussion and knowledge.so if you’re looking a good date, consider dating a wealthy senior gay man today!<\/p>\n
Senior gay men offer companionship and love that is difficult to find in the current society. they’ve been experienced and know very well what it will take to help make a relationship work. they’re also faithful and will constantly the stand by position you. they have been a fantastic resource for advice and may teach you a lot about love. if you’re searching for a relationship that is both fulfilling and special, you then should consider dating a senior gay man.<\/p>\n
Are you in search of a senior gay hookup? in that case, you are in luck. there are numerous senior gay guys inside geographic area that are interested in a casual relationship. be sure that you find someone who works with together with your life style and passions. here are a few ideas to assist you in finding the proper senior gay guy available. very first, think about your interests. are you currently into recreations? would you always venture out dancing? are you into climbing or camping? these are everything that senior gay guys might enjoy as well. next, think about your lifestyle. are you currently a stay-at-home dad? do you work a lot? have you been resigned? finally, think about your compatibility. are you searching for somebody who is equally as active when you are? or are you looking for a person who is more relaxed? compatibility is key when it comes to finding a senior gay hookup. in the event that you follow these pointers, you’ll be able to discover the perfect senior gay guy for you personally.<\/p>\n
there is absolutely no one response to this concern, as there’s absolutely no one method to experience or recognize as a senior gay man<\/a>.however, there are a few items that many senior gay males share in common.first and foremost, senior gay males are often more capable and worldly than their more youthful counterparts.they might have spent additional time checking out their sex and exploring the entire world around them.they may also have experienced additional time to construct strong relationships and friendships.second, senior gay men often have an abundance of real information and experience to fairly share.they may be able to provide advice and guidance to younger gay men on how best to navigate their very own sexuality and life.finally, senior gay males frequently have a distinctive viewpoint regarding globe which can be enlightening to younger gay men.they may have experienced a lot more than their more youthful counterparts, and may have the ability to share their insights and knowledge with other people.whatever this means to be a senior gay guy, it’s clear there are several things that unite these guys together.and, while the world gets to be more accepting of lgbtq+ people, the likelihood is that the number of senior gay guys continues to grow.<\/p>\n","protected":false},"excerpt":{"rendered":" Discover some great benefits of dating senior gay men If you are looking for a more meaningful and satisfying relationship, dating a senior gay guy may be the perfect selection for you. check out regarding the benefits of dating a senior gay man: 1. they are skilled many senior gay males were through plenty inside…
Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-4464","post","type-post","status-publish","format-standard","hentry","category-blog"],"_links":{"self":[{"href":"https:\/\/rockwoodhealthcare.com\/index.php\/wp-json\/wp\/v2\/posts\/4464","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/rockwoodhealthcare.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/rockwoodhealthcare.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/rockwoodhealthcare.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/rockwoodhealthcare.com\/index.php\/wp-json\/wp\/v2\/comments?post=4464"}],"version-history":[{"count":1,"href":"https:\/\/rockwoodhealthcare.com\/index.php\/wp-json\/wp\/v2\/posts\/4464\/revisions"}],"predecessor-version":[{"id":4465,"href":"https:\/\/rockwoodhealthcare.com\/index.php\/wp-json\/wp\/v2\/posts\/4464\/revisions\/4465"}],"wp:attachment":[{"href":"https:\/\/rockwoodhealthcare.com\/index.php\/wp-json\/wp\/v2\/media?parent=4464"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/rockwoodhealthcare.com\/index.php\/wp-json\/wp\/v2\/categories?post=4464"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/rockwoodhealthcare.com\/index.php\/wp-json\/wp\/v2\/tags?post=4464"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}