wordpress добавить медиа-конфликт с помощью плагина

#php #jquery #wordpress #conflict

#php #jquery #wordpress #конфликт

Вопрос:

моя функция лайтбокса wordpress «добавить медиа» нарушена добавленным мной jquery. Я понятия не имею, почему это может быть проблемой. Может кто-нибудь, пожалуйста, взглянуть и любезно помочь?

Jquery здесь:

 jQuery(document).ready( function($){
$("header > h2").click( function() {

var div = $("div#OvertheTop");

$.post('wp-admin/admin-ajax.php', {
action: "tpp_comments",
post_id: $(this).find("a").attr("id")
}, function (data) {

div.append($(data));
div.css("opacity","1");
div.css("display","block");
$("body").css("overflow","hidden");
$("#BigContainer").fadeIn();
$("#BigContainer").css("display","block");


}
);
return false;
});


$(document).click(function(event) { 
    if(!$(event.target).closest('#post').length) {
        if($('#post').is(":visible")) {

$("#post").remove();
$("#BigContainer").fadeOut();
$("body").css("overflow","visible");
        }
    }        
})





});
  

и php здесь:

 function tpp_posts_comments_return()
{

$post_id = isset( $_POST['post_id'] ) ? $_POST['post_id'] : 0;

if ( $post_id > 0)
{

$post = get_post($post_id);
?>
<div id="post"><?php  echo apply_filters('the_content', $post->post_content); ?></div>
<?php
}
die();
}
add_action('wp_ajax_nopriv_tpp_comments','tpp_posts_comments_return');

function tpp_posts_get_scripts()
{
wp_enqueue_script("tpp-posts", path_join(WP_PLUGIN_URL, basename( dirname( __FILE__ )). "/top_post.js") , array("jquery"));

}

add_action('wp_print_scripts','tpp_posts_get_scripts');
  

Комментарии:

1. «нарушен» — в чем именно, по-видимому, проблема? Что не работает? Вы получаете какие-либо ошибки в консоли? Нам нужно больше информации.

2.Текстовое поле и все исчезло, как здесь:imgur.com/1tEnwAEamp;2d2phrk imgur.com/1tEnwAEamp;2d2phrk#1 Я не думаю, что есть какая-либо ошибка