27 Aralık 2016 Salı
Wordpress CSS ile meta bilgilerini kaldırmak
.entry-meta .cat-links, .entry-meta .cat-links a, .tag-links, .tag-links a { display: none; }
.read-more{ display:none !important; }
.entry-meta { display: none; }
.entry-meta .by-author, .entry-meta .date { display: none; }
10 Aralık 2016 Cumartesi
Wordpress SSL Kurulumu
wp-config.php
define( 'WP_SITEURL', 'https://google.com' );
define( 'WP_HOME', 'https://google.com' );
define( 'FORCE_SSL_LOGIN', true );
define( 'FORCE_SSL_ADMIN', true );
.htaccess
#BEGIN WordPress RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://google.com/$1 [R,L] RewriteBase / RewriteRule ^index.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] #END WordPress
define( 'WP_SITEURL', 'https://google.com' );
define( 'WP_HOME', 'https://google.com' );
define( 'FORCE_SSL_LOGIN', true );
define( 'FORCE_SSL_ADMIN', true );
.htaccess
#BEGIN WordPress RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://google.com/$1 [R,L] RewriteBase / RewriteRule ^index.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] #END WordPress
Kaydol:
Kayıtlar (Atom)