Skip to content

Instantly share code, notes, and snippets.

View subrotoice's full-sized avatar
:octocat:
Codding is the beauty of life

Subroto Biswas subrotoice

:octocat:
Codding is the beauty of life
View GitHub Profile
1. ইন্টেক্স পেজে আগে সব কাজ করে নিতে হবে মেনু, উইগেট, থিম অপশন সব,
2. তারপর ভাঙতে হবে header.php, footer.php, sidebar.php
3. তারপর index.php থেকে single.php, page.php, archive.php তৈরি করতে হবে ( প্রথমে ভার্সন কম করতে হবে, যেমনঃ সাইডবারে একটা ভার্সন রাখলেই হবে পরে চাইলে করা যাবে )
WP Theme Development (Create PHP Files)
header.php
==================================
<?php bloginfo('name'); ?>
<?php bloginfo('description'); ?>
<?php bloginfo('home'); ?> // Home Page link
<?php echo get_template_directory_uri(); ?>/
# Initial git setup || Run For the first time.
git config --global user.name "subrotoice"
git config --global user.email "[email protected]" // Every space has meaning: git config --global user.email [email protected] will work
git config --list (Show all config) || git config user.name //(Show User Name)
git config --global core.editor "code --wait" // set default editor to open config
git config --global -e // Open in editor
git config --global core.autocrlf true // Mac: git config --global core.autocrlf input // End line
# Ch-2: Creating Snapshots (do Commit) | https://prnt.sc/zIIkMN39czOk | stage area green , unstated red | https://prnt.sc/9_BUPJ6VX53L
1. Working Directory: Where you work on your files locally || "Project Folder" another name
CDN Collection (www.edeves.com)
======================================================
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet">
<?php
// Second call this
function example_callback( $string ) {
$new_value = $string . " NEW!";
return $new_value;
}
add_filter( 'example_filtersubroto', 'example_callback', 11 );
// First call this
function example_callback2( $string2 ) {
<?php
/**
* Proper way to enqueue scripts and styles
*/
function wpdocs_theme_name_scripts() {
wp_enqueue_style( 'style-name', get_stylesheet_uri() ); // style.css
wp_enqueue_style( 'slider', get_template_directory_uri() . '/css/slider.css',false,'1.1','all');
wp_enqueue_script( 'script-name', 'https://cdnjs.cloudflare.com/ajax/libs/fuelux/3.15.10/js/fuelux.min.js', array(), '1.0.0', false ); // If you used true then it load in_footer, Default: False
wp_enqueue_script('oxfam_js_cookie', 'https://cdnjs.cloudflare.com/ajax/libs/js-cookie/2.1.0/js.cookie.min.js', array(), null, true); // Remove version variable by using null
<?php
//Example array.
$array = array('Ireland', 'England', 'Wales', 'Northern Ireland', 'Scotland');
//Encode the array into a JSON string.
$encodedString = json_encode($array);
//Save the JSON string to a text file.
file_put_contents('myfile.txt', $encodedString);
# MySqli - OOP version Connection and PHP Scrip--------(mysqli)------------
$host = "localhost";
$username = "root";
$password = "";
$database = "";
$conn = new mysqli($host, $username, $password, $database);
$sql = 'SELECT * FROM employee';
$result = $conn->query($sql);
if ($result->num_rows > 0) {
while($row = $result->fetch_assoc()) {
//Download File form server to server
<?php
set_time_limit(0); //Unlimited max execution time
$path = 'latest.zip'; //can keep this name same
$url = 'https://wordpress.org/latest.zip';
$newfname = $path;
echo 'Starting Download!<br>';
$file = fopen ($url, "rb");
if($file) {
Name: সুব্রত কুমার বিশ্বাস - Subroto Kumar Biswas
F Name: সুদর্শন কুমার বিশ্বাস - Sudorson Kumar Biswas - 5016343774395
M Name: অর্পনা রানী বিশ্বাস - Arpona Rani Biswas - 5016343774296 (Orpana Rani Biswas)
S Name: সুষমা মোদক - SUSMA MODAK - 1514652518 - 10/Dec/1999
N Id : 19908210795000274
Paspot: BM0886599 -- Updated(*New)
Birth Reg: 19905016300006034 -----Birsth REG
Mobile: 01722272790
Job ICT Ministry------------------
# VS Code - Extensions
Prettier - Code formatter (Javascript, HTML, CSS)
Material Icon Theme(Philipp Kief)
Highlight Matching Tag(vincaslt): Highlights matching closing and opening tags
HTML CSS Support(ecmel): Auto Complete css class in HTML markup | https://prnt.sc/J9i5PsLERdxR
CSS Peek (Pranay Prakash): Click HTML Markup and it link to css class rule in css file | https://prnt.sc/YIFcnZfVR_LN
lucy Theme: vscodethemes.com/e/juliettepretot.lucy-vscode/lucy?language=javascript
Live Server: Do not need to refresh browser for any change
GitLens — Git supercharged: (GitKraken)
Quokka.js: Live JS variable output dey