Skip to content

Instantly share code, notes, and snippets.

@raselahmed7
raselahmed7 / wordpress-image-crop.php
Last active February 1, 2023 05:56
Wordpress image crop
<?php
// in functions.php
add_theme_support( 'post-thumbnails');
/*
Wordpress crop an image = 5 size. Sizes are given below
thumbnail // Thumbnail (default 150px x 150px max)
@raselahmed7
raselahmed7 / wordpress-dummy-code
Last active November 22, 2016 14:34
Wordpress dummy codes
<?php the_title(); ?>
function theme_latest_jquery() {
wp_enqueue_script('jquery');
}
add_action('init', 'theme_latest_jquery');