Skip to content

Instantly share code, notes, and snippets.

@Itachicz11
Itachicz11 / add_meta_box.php
Created March 19, 2012 22:12
This si my add_meta_box.php
<?
// Add the Meta Box
function add_custom_meta_box() {
add_meta_box(
'image_metabox', // $id
'Image metabox', // $title
'show_custom_meta_box', // $callback
'hlavni_clanky', // $page
'normal', // $context
@Itachicz11
Itachicz11 / page-blog_fullwidth.php
Created March 14, 2012 22:16
my page-blog_fullwidth.php with pagination problem
<?php
/*
Template Name: Blog full width
*/
?>
<?php get_header();?>
<div id="title_container" class="grid_12">
<h2><?php the_title(); ?></h2>
<?php
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args = array( 'post_type' => 'post', 'posts_per_page' => 4);
$loop = new WP_Query($args);
$loop->query( 'showposts=10&cat='.$category_id.'&paged='.$paged );
while ( $loop->have_posts() ) : $loop->the_post(); ?>
<?php $thumbnail_url = wp_get_attachment_image_src( get_post_thumbnail_id(get_the_ID()), 'fullsize', false, '' );
$thumbnail_url = $thumbnail_url[0]; ?>
@Itachicz11
Itachicz11 / page-blog_fullwidth.php
Created March 12, 2012 19:12
This is my page-blog_fullwidth.php (it is just simple page template)
<?php
/*
Template Name: Blog full width
*/
?>
<?php get_header();?>
<div id="title_container" class="grid_12">
<h2><?php the_title(); ?></h2>
@Itachicz11
Itachicz11 / menu_function.js
Created March 8, 2012 20:57
This is my js file
jQuery(document).ready(function($) {
var horni_menu_li = $('#mine_menu #menu-horni-menu li')
horni_menu_li.hover(
function(){$(this).find('ul.sub-menu').css({visibility: "visible",display: "none"}).slideDown(180)},
function(){$(this).find('ul.sub-menu').slideUp(180)}
);
});
@Itachicz11
Itachicz11 / my_effect.js
Created March 8, 2012 20:53
This is my menu.js file
horni_menu_li.on('mouseover',function(){
$(this).find('ul.sub-menu').stop().css({visibility: "visible",display: "none"}).slideDown(180);
});
horni_menu_li.on('mouseleave',function(){
$(this).find('ul.sub-menu').stop().slideUp(180);
});