URL query parameters can be easily modified using URLSearchParams and History interfaces: // Construct URLSearchParams object instance from current URL querystring. var queryParams = new URLSearchParams(window.location.search); Set new or modify existing parameter value. queryParams.set("myParam", "myValue"); // Replace current querystring with the new one. history.replaceState(null, null, "?"+queryParams.toString()); Alternatively instead of modifying current history entry...
Read More
I collected the parameters I used while creating a WordPress theme on one page. This content contains codes suitable for general use and includes all the necessary general codes when creating a theme. To help others as a WordPress lover… Title parameter <?php global $page, $paged; bloginfo( 'name' );...
Read More
<?php
define("IN_MYBB", 1);
require_once "./global.php";
if($mybb->user['uid'] == KULLANICI_ID) {
echo '<pre>';
var_dump($mybb);
echo '</pre>';
}
?>
KULLANICI_ID bölümüne sadece sizin görebilmeniz için int şeklinde kullanıcı idsi girilmesi gerekmekte.
Read More
1. Atom.io (atom.io) Atom.io GitHub tarafından geliştirilen açık kaynak kodlu ve genel anlamda ortalama 2 yıllık deneyimlerime göre hem Windows hemde Mac üzerinde gayet stabil çalışan bir yazım editörü. Atom'un Artıları Ücretsiz ve Açık Kaynak Kullanımı Kolay Zengin Eklenti ve Tema Marketi Kişiselleştirmeye Müsait Git Kontrolü Atom'un Eksileri Büyük Dosyaları...
Read More
By default, sending a message to the authorities via chat, which is set to the "@" tag, sends it without checking if the sender has found an active gag penalty. This issue can cause the player to still annoy the authorities from the authorized chat, even though the player has...
Read More