Skip to content

Instantly share code, notes, and snippets.

@ABooooo
ABooooo / new_gist_file_0
Created August 19, 2014 07:36
Allow SVG
function cc_mime_types( $mimes ){
$mimes['svg'] = 'image/svg+xml';
return $mimes;
}
add_filter( 'upload_mimes', 'cc_mime_types' );
<?php
/* Always have wp_footer() just before the closing </body>
* tag of your theme, or you will break many plugins, which
* generally use this hook to reference JavaScript files.
*/
wp_footer();
?>
// insert before </head>
<?php wp_head(); ?>
@ABooooo
ABooooo / new_gist_file_0
Created August 19, 2014 07:38
Add body class
<body <?php body_class(); ?>>
@ABooooo
ABooooo / new_gist_file_0
Created August 19, 2014 07:38
Home link
<?php echo home_url(); ?>
@ABooooo
ABooooo / new_gist_file_0
Created August 19, 2014 07:39
Include menu
<?php wp_nav_menu( array( 'theme_location' => 'header-menu', 'menu_class' => 'nav navbar-nav' ) ); ?>
@ABooooo
ABooooo / new_gist_file_0
Created August 19, 2014 07:41
Template path
echo get_template_directory_uri();
<?php get_template_directory_uri(); ?>
@ABooooo
ABooooo / new_gist_file_0
Created August 19, 2014 07:43
Body structure
<?php get_header(); ?> // start
<?php get_footer(); ?> // end
@ABooooo
ABooooo / new_gist_file_0
Created August 19, 2014 07:44
Document ready
$(document).ready(function(){
});
@ABooooo
ABooooo / new_gist_file_0
Created August 19, 2014 07:46
Search for a word then do something
var item = $('.stanje');
for (var i = 0; i <= item.length; i++) {
if ($(item[i]).text() == 'prodano') {
$(item[i]).addClass('bg-danger');
} else if ($(item[i]).text() == 'rezervirano') {
$(item[i]).addClass('bg-warning');