Ответы пользователя по тегу HTML
  • Где в WP подключается родной jquery?

    @max3wq
    WP 5.6
    wp-includes/functions.wp-scripts.php

    function wp_deregister_script( $handle ) {
    	_wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle );
    
    	/**
    	 * Do not allow accidental or negligent de-registering of critical scripts in the admin.
    	 * Show minimal remorse if the correct hook is used.
    	 */
    	$current_filter = current_filter();
    	if ( ( is_admin() && 'admin_enqueue_scripts' !== $current_filter ) ||
    		( 'wp-login.php' === $GLOBALS['pagenow'] && 'login_enqueue_scripts' !== $current_filter )
    	) {
    		$not_allowed = array(
    			'jquery',
    			'jquery-core',
    			'jquery-migrate',
    			'jquery-ui-core',
    			'jquery-ui-accordion',
    			'jquery-ui-autocomplete',
    			'jquery-ui-button',
    			'jquery-ui-datepicker',
    			'jquery-ui-dialog',
    			'jquery-ui-draggable',
    			'jquery-ui-droppable',
    			'jquery-ui-menu',
    			'jquery-ui-mouse',
    			'jquery-ui-position',
    			'jquery-ui-progressbar',
    			'jquery-ui-resizable',
    			'jquery-ui-selectable',
    			'jquery-ui-slider',
    			'jquery-ui-sortable',
    			'jquery-ui-spinner',
    			'jquery-ui-tabs',
    			'jquery-ui-tooltip',
    			'jquery-ui-widget',
    			'underscore',
    			'backbone',
    		);
    
    		if ( in_array( $handle, $not_allowed, true ) ) {
    			$message = sprintf(
    				/* translators: 1: Script name, 2: wp_enqueue_scripts */
    				__( 'Do not deregister the %1$s script in the administration area. To target the front-end theme, use the %2$s hook.' ),
    				"<code>$handle</code>",
    				'<code>wp_enqueue_scripts</code>'
    			);
    			_doing_it_wrong( __FUNCTION__, $message, '3.6.0' );
    			return;
    		}
    	}
    
    	wp_scripts()->remove( $handle );
    }
    Ответ написан
    Комментировать
  • Как правильно отобразить html в WordPress?

    @max3wq
    Попробуйте так

    <div class="golova1">Еще статьи по данной теме:</div>                           
    <div class="r-posts">
    <?php $categories = get_the_category($post->ID);
    if ($categories) {
     $category_ids = array();
     foreach($categories as $individual_category) $category_ids[] = $individual_category->term_id;
     $args=array(
     'category__in' => $category_ids, // Выбор по категориям
     'orderby'=>rand, // Случайный подбор постов
     'caller_get_posts'=>1); // Запрещает повторение ссылок
     'post__not_in' => array($post->ID),
     'showposts'=>5, // Число, которое можно изменить, означает количество выводимых записей
     $my_query = new wp_query($args);
     if( $my_query->have_posts() ) {
    echo '<ul>';
            while ($my_query->have_posts()) {
                $my_query->the_post();
            ?>
                <li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></li>
            <?php
            }
            echo '</ul>';
        }
    wp_reset_query();
    }
    ?></div>
    Ответ написан
    Комментировать
  • Как отобразить ошибку из Javascript в html?

    @max3wq
    Можно дописать после
    if (result == '0') {
    alert("Неверный логин или пароль");
    или Ваша переменная.

    Попрактикуйтесь с алертом, потом поставите на его место
    $('div').text(text);
    Ответ написан
    Комментировать