- Looking method to get data from wp-mysql
- create form to adjust wp-mysql from admin side
- connect with woocommerce
All muhaza's note in developing website. Front-end & uiux method. Real life implementation for webdesigner.
Thursday, 14 April 2022
WP PLUGIN DEVELOPMENT
Tuesday, 12 April 2022
CUSTOM ADMIN DASHBOARD WIDGET SCREEN OPTIONS
add_action(
'wp_dashboard_setup'
,
'my_custom_dashboard_widgets'
);
function
my_custom_dashboard_widgets() {
global
$wp_meta_boxes
;
wp_add_dashboard_widget(
'custom_help_widget'
,
'Theme Support'
,
'custom_dashboard_help'
);
}
function
custom_dashboard_help() {
echo
'<p>Welcome to Custom Blog Theme! Need help? Contact the developer <a href="mailto:yourusername@gmail.com">here</a>. For WordPress Tutorials visit: <a href="https://www.wpbeginner.com" target="_blank">WPBeginner</a></p>'
;
}
WP FUNCTIONS.PHP TO THE WORDPRESS PLUGIN
1. You need file manager. Download it on plugin
2. Create new folder name it anything 'my-functions'
3. Create new php file name it 'my-functions.php'
4. paste and edit code below suit with your want
<?php
/*
Plugin Name: my functions
Plugin URI: https://orkedtouch.com/wp-admin/plugin-editor.php
Description: This is my functions instead on functions.php
Author: MUHAZA
Author URI:
Version: 2022.04.13
License: GPL
*/
// add your functions below
Saturday, 9 April 2022
Fonts with specific Media Query
<link rel="stylesheet" href="styles.css" media="only screen and (max-device-width: 480px)">
<link rel="stylesheet" href="styles_mobile.css" media="only screen and (min-device-width: 480px)">Friday, 8 April 2022
HTACCESS SPEED UP OPTIMIZE SETUP
WOOCOMMERCE FLYCART
email mailto: pretext
<a href="mailto:designoutsourced.com+info@gmail.com?subject=Maklumat%20lanjut%20pakej&body=Hai,%20saya%20berminat%20tahu%20lebi...
-
Looking at vue-cli repository I see two different ways of scaffolding vue projects. The v3 (beta) version, installed as npm install ...
-
component need at least this 3 component file 1. customers.component.ts import { Component , OnInit } from '@angular/core...