Fantasy E-books by PhenomenalPen

Tag: programming Archives

Creating WordPress Theme – Adding Customizer Object

Put this code in your functions.php file ( you must insert the codes inside PHP opening(<?php) and closing(?>) tags. ) : function escimma_setup() { add_theme_support( ‘custom-logo’ ); } add_action( ‘after_setup_theme’, ‘escimma_setup’ ); You can assign a different function name if you want. Here I’m calling it escimma_setup as that is what my theme is called. […]

Creating WordPress Theme – The Index File Loop

I’m using the index file for this example. Though it might be best to put this code in other PHP file in your theme. We will just directly use the index file for simplicity. 1 <?php get_header(); ?> 2 <section> 3 <aside> 4 </aside> 5 <?php if( have_posts()) : while(have_posts()) : the_post(); ?> 6 <article> […]

Creating WordPress Theme – Inside Header File

You’ll probably notice that the header.php file lacks meta tags as this article will be more focus on using WP(WordPress) functions. 1 <!DOCTYPE html> 2 <html <?php language_attributes(); ?>> 3 <head> 4 <meta charset=”<?php bloginfo( ‘charset’ ); ?>”/> 5 <title><?php bloginfo( ‘name’ ); ?> | <?php is_front_page() ? bloginfo( ‘description’ ) : wp_title(); ?></title> 6 <link rel=”stylesheet” type=”text/css” href=”<?php […]

Creating WordPress Theme – Getting Started

Let’s start creating WordPress theme by installing WordPress locally. Because we don’t want to do all the coding online. If you already have Apache, PHP, MySQL and phpMyAdmin ready (pretty long list needed huh), you can start now by downloading WordPress here. Note: You can also use Xampp or Wamp, as both of this ease […]

Auto Clicker CSharp Tutorial – Let’s Learn Programming

Introduction – Simple Auto Clicker CSharp Tutorial Want to create your own auto clicker this CSharp tutorial might help you. Basically auto clicker are software designed to do a certain job. To automatically click. Because sometimes its kinda feel dull doing recurring tasks. Basically we might want to have an app that can do this […]