add_filter('wp_nav_menu_items','add_contact_block_to_menu', 10, 2);
function add_contact_block_to_menu( $items, $args ) {
if( $args->theme_location == 'primary' )
return $items."<li class='custom-element-menu'>Напишите что угодно</li>";
return $items;
}
if ( 'plain' === $this->get_email_type() ) {
$email_content = wordwrap( preg_replace( $this->plain_search, $this->plain_replace, wp_strip_all_tags( $this->get_content_plain() ) ), 70 );
} else {
$email_content = $this->get_content_html();
}
return $email_content;
}