Skip to content

Instantly share code, notes, and snippets.

@akinayturan
akinayturan / index.php
Last active May 15, 2021 18:16
WP ~ Ana Sayfada Eklentisiz Kategori Gizlemek
function preventHomepageTips($query) {
if($query->is_home() && $query->is_main_query()){
$query->set('cat', '-8 -18');}}
add_action('pre_get_posts', 'preventHomepageTips');
@akinayturan
akinayturan / .htaccess
Last active June 9, 2017 12:52
AMP Devre Dışı Bırakma Ve Yönlendirme (https://bilgiotu.com/amp-devre-disi-birakma-yonlendirme/)
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)/amp/$ $1/ [R=301,L]
RewriteRule ^(.*)/amp$ $1/ [R=301,L]
</IfModule>
@akinayturan
akinayturan / show.php
Last active June 9, 2017 12:56
WP ~ wp_nav_menu div, ul, li öğelerini kaldırma (https://bilgiotu.com/wp-wp_nav_menu-div-ul-li-kaldirma/)
$menuParameters = array(
'container' => false,
'echo' => false,
'items_wrap' => '%3$s',
'depth' => 0,
);
echo strip_tags(wp_nav_menu( $menuParameters ), '<a>' );
@akinayturan
akinayturan / show.htm
Created March 7, 2015 10:43
Datarar ~ CSS Oval Köşe Oluşturucu
border-radius: 10px; /* Standart Özellik: CSS 3 standart yazılışı*/
-moz-border-radius: 10px; /* Mozilla Firefox için özellik*/
-webkit-border-radius: 10px; /* Safari ve Chrome için kullanılan yazılış.*/
@akinayturan
akinayturan / index.php
Last active June 9, 2017 12:55
Link Çıkışını Engelleme (git, git.php Yapımı) (https://bilgiotu.com/link-cikisini-engelleme-git-git-php-yapimi/)
<?php
$adres=$_GET['url'];
preg_match('@^(?:http://)?([^/]+)@i', $_SERVER['HTTP_REFERER'], $matches);
$ref = $matches[1];
if($adres=='' || $ref!= 'baykusgrup.com')
$adres = '//baykusgrup.com';
if( !(preg_match('|^(//)|', $adres) || preg_match('|^(http://)|', $adres) || preg_match('|^(https://)|', $adres)) )
$adres = '//'.$adres;
?>
<!DOCTYPE html>
@akinayturan
akinayturan / show1.php
Created February 26, 2015 08:24
WP ~ Yorumdaki Linkleri Yeni Sekmede Açtırma
function get_comment_author_link
@akinayturan
akinayturan / show1.php
Created February 26, 2015 08:22
WP ~ Generator Meta Tag'ını Kaldırmak
remove_action('wp_head', 'wp_generator');
@akinayturan
akinayturan / show1.htm
Last active June 9, 2017 12:56
Sitenizde Kar Yağsın
<script type="text/javascript" src="http://bilgiotu.com/_/dosya/snowstorm.js"></script>
@akinayturan
akinayturan / show1.php
Created February 26, 2015 08:17
WP ~ Sitenize Sesli Arama Özelliği Ekleyin
<input type="text" id="s" name="s" />
@akinayturan
akinayturan / show.htm
Created February 25, 2015 23:05
Sayfa Başına Dön Kodu
<a href="#">Yukarı</a>