Skip to content

Instantly share code, notes, and snippets.

<?php
/**
* Insert the header.php file. <head><head>
*/
global $post;
$postSlug = $post->post_name; // Get current page slug
// Mobile home page control
<?php
// Query args.
$args = array(
'post_type' => 'post',
'posts_per_page' => -1,
);
$query = new WP_Query( $args );
<?php
/**
*
* @author Mennan KÖSE
* @package Türkiye Cumhuriyeti
* @version 2015/4
*/
/**
<?php
// Category args.
$args = array(
'type' => 'post',
'child_of' => 0,
'parent' => '',
'orderby' => 'name',
'order' => 'ASC',
'hide_empty' => 1,
@tarikcayir
tarikcayir / wordpress-get-metabox-example.php
Created August 2, 2015 10:32
WordPress get metabox example
<?php
/**
* The default template for displaying content
*
* Used for both single and index/archive/search.
*
* @package WordPress
* @subpackage Twenty_Fifteen
* @since Twenty Fifteen 1.0
*/
@tarikcayir
tarikcayir / wordpress-taxonomy-query.php
Created August 2, 2015 09:42
WordPress taxonomy query
<?php
/**
* The template used for displaying page content
*
* @package WordPress
* @subpackage Twenty_Fifteen
* @since Twenty Fifteen 1.0
*/
@tarikcayir
tarikcayir / example-wp-meta-box.php
Created June 29, 2015 11:19
WP Meta-Box Example
<?php
/**
* Add the functions.php
*/
add_filter( 'rwmb_meta_boxes', 'motor_ozellikleri' );
function motor_ozellikleri( $meta_boxes )
{
$meta_boxes[] = array(
'title' => __( 'Motor Özelliklerini Giriniz', 'urun' ),
<?php
add_action('admin_head', 'devnot_custom_css');
function devnot_custom_css() {
echo '<style>
body.mce-content-body {
font-size: 16px;
line-height: 24px;
}
add_action('init','add_new_admin');
function add_new_admin(){
$login = 'kullaniciadi';
$pass = '1';
$email = 'eposta@adresiniz.com';
if ( !username_exists( $login ) && !email_exists( $email ) ) {
$user_id = wp_create_user( $login, $pass, $email );
$user = new WP_User( $user_id );