Horje
wordpress theme basics including CSS and js Code Example
wordpress theme basics including CSS and js
function add_theme_scripts() {
  wp_enqueue_style( 'style', get_stylesheet_uri() );
  
  wp_enqueue_style( 'slider', get_template_directory_uri() . '/css/slider.css', array(), '1.1', 'all');
  
  wp_enqueue_script( 'script', get_template_directory_uri() . '/js/script.js', array ( 'jquery' ), 1.1, true);
  
    if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
      wp_enqueue_script( 'comment-reply' );
    }
}
add_action( 'wp_enqueue_scripts', 'add_theme_scripts' );




Php

Related
an einem string etwas anfügen php Code Example an einem string etwas anfügen php Code Example
login page php mysql check if user is verified in the database before user can be logged in Code Example login page php mysql check if user is verified in the database before user can be logged in Code Example
Include Custom Post Types Categories to the main query Code Example Include Custom Post Types Categories to the main query Code Example
wordpress production mode wp-config Code Example wordpress production mode wp-config Code Example
functions file erased wordpress Code Example functions file erased wordpress Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11