Difference between revisions of "WP THEME"

From KOP KB
Jump to: navigation, search
(Custom Theme Page)
(Functions)
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
This will be about certain codings to customize your wordpress theme even further.  
 
This will be about certain codings to customize your wordpress theme even further.  
  
=Custom Theme Page=
+
=Custom Page Inherit Theme=
When you add a new page in wordpress you can choose a template on the right hand side. If you upload a php file with a custom template for a page and provide the template name it will show up in the dropdown list.
+
If you upload a custom PHP file which you would like to inherit your WordPress Theme include the below code at the top of that PHP file then add it to your theme's folder (e.g. inside of the twentysixteen folder). 
 +
 
 +
When you add a new page in wordpress you can choose a template on the right hand side. this template list should now include the Template name you have included in your file (in this case, "Full Width Page").
 
<syntaxhighlight lang="php">
 
<syntaxhighlight lang="php">
 
<?php
 
<?php
Line 12: Line 14:
 
</syntaxhighlight>
 
</syntaxhighlight>
 
SOURCE: https://developer.wordpress.org/themes/template-files-section/page-template-files/page-templates/
 
SOURCE: https://developer.wordpress.org/themes/template-files-section/page-template-files/page-templates/
 +
=Functions=
 +
==Adding Header Image Function==
 +
The following below is basic header image function for the wordpress site. You can change the file path and change the width and height as necessary. This code would go within the functions.php file of your template.
 +
<syntaxhighlight lang="php">
 +
add_action( 'init', 'register_my_menu' );
 +
$args = array(
 +
'width'        => 960,
 +
'height'        => 198,
 +
'default-image' => get_template_directory_uri() . '/images/header.jpg'
 +
);
 +
add_theme_support( 'custom-header', $args );
 +
</syntaxhighlight>
 +
==Use your own css for the login==
 +
Working within the functions.php again. You can use this to refer to your own css file within your template directory just for the login page.
 +
<syntaxhighlight lang="php">
 +
function my_login_stylesheet() {
 +
    wp_enqueue_style( 'custom-login', get_template_directory_uri() . '/login/logins.css' );
 +
   
 +
}
 +
add_action( 'login_enqueue_scripts', 'my_login_stylesheet' );
 +
</syntaxhighlight>
 +
==Add your own css for the admin panel ==
 +
In the functions.php file again this will let you add an Admin color scheme that will let you control the css for the entire panel and you specify a css file to load it from.
 +
<syntaxhighlight lang="php">
 +
add_action( 'login_enqueue_scripts', 'my_login_stylesheet' );
 +
 +
function additional_admin_color_schemes() {
 +
    //Get the theme directory
 +
    $theme_dir = get_template_directory_uri();
 +
 +
    //Ocean
 +
    wp_admin_css_color( 'RagTagBunch', __( 'RagTagBunch' ),
 +
        $theme_dir . '/admin-colors/ocean/colors.min.css',
 +
        array( '#222', '#333', '#444', '#888' )
 +
    );
 +
}
 +
add_action('admin_init', 'additional_admin_color_schemes');
 +
</syntaxhighlight>

Latest revision as of 17:51, 11 March 2016

This will be about certain codings to customize your wordpress theme even further.

Custom Page Inherit Theme

If you upload a custom PHP file which you would like to inherit your WordPress Theme include the below code at the top of that PHP file then add it to your theme's folder (e.g. inside of the twentysixteen folder).

When you add a new page in wordpress you can choose a template on the right hand side. this template list should now include the Template name you have included in your file (in this case, "Full Width Page").

<?php
/**
 * Template Name: Full Width Page
 *
 */

SOURCE: https://developer.wordpress.org/themes/template-files-section/page-template-files/page-templates/

Functions

Adding Header Image Function

The following below is basic header image function for the wordpress site. You can change the file path and change the width and height as necessary. This code would go within the functions.php file of your template.

add_action( 'init', 'register_my_menu' );
$args = array(
	'width'         => 960,
	'height'        => 198,
	'default-image' => get_template_directory_uri() . '/images/header.jpg'
);
add_theme_support( 'custom-header', $args );

Use your own css for the login

Working within the functions.php again. You can use this to refer to your own css file within your template directory just for the login page.

function my_login_stylesheet() {
    wp_enqueue_style( 'custom-login', get_template_directory_uri() . '/login/logins.css' );
    
}
add_action( 'login_enqueue_scripts', 'my_login_stylesheet' );

Add your own css for the admin panel

In the functions.php file again this will let you add an Admin color scheme that will let you control the css for the entire panel and you specify a css file to load it from.

add_action( 'login_enqueue_scripts', 'my_login_stylesheet' );

function additional_admin_color_schemes() {
    //Get the theme directory
    $theme_dir = get_template_directory_uri();
 
    //Ocean
    wp_admin_css_color( 'RagTagBunch', __( 'RagTagBunch' ),
        $theme_dir . '/admin-colors/ocean/colors.min.css',
        array( '#222', '#333', '#444', '#888' )
    );
}
add_action('admin_init', 'additional_admin_color_schemes');