$(window).load(function(){
$('.option_faq-wp').find('.post a').on('click', function(e){
e.preventDefault();
$(this).parent().next().slideToggle();
var c = $(this).parents('.post').attr('class');
if(c === 'post') {
$(this).parents('.post').addClass('open');
} else {
$(this).parents('.post').removeClass('open');
}
});
});