0
在我的主題我header.php
補充說:如何在wordpress中訪問jquery?
<?php wp_enqueue_script("jquery"); ?>
,並嘗試functions.php
使用jquery:
function remove_xprofile_links() {
remove_filter('bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data', 9, 2);
global $current_user;
get_currentuserinfo();
$user_id = $current_user->ID;
$field = xprofile_get_field_data(3, $user_id);
if($field="Покупатель")
{
?>
<script type="text/javascript">
jQuery(document).ready(function($){
$("#nickname,#display_name").parent().parent().hide();
});
</script>
<?php
}
}
add_action('bp_init', 'remove_xprofile_links');
但在控制檯仍然ReferenceError: jQuery is not defined
如何jQuery的正確使用?
應在每個文檔的functions.php – charlietfl
的[?我如何添加一個簡單的jQuery腳本到WordPress(可能的複製http://stackoverflow.com/questions/排隊腳本11159860 /怎麼辦,我加-A-簡單jqu ERY腳本到WordPress的) – Berriel