Wednesday, November 30th, 2016
Add this to functions.php
// Pick out the version number from scripts and styles
function remove_version_from_style_js( $src ) {
if ( strpos( $src, 'ver=' . get_bloginfo( 'version' ) ) )
$src = remove_query_arg( 'ver', $src );
return $src;
}
add_filter( 'style_loader_src', 'remove_version_from_style_js');
add_filter( 'script_loader_src', 'remove_version_from_style_js');
Tags: Functions, PHP, Remove, Script, Style, Ver, Version, WordPress
Posted in PHP, WordPress | No Comments »
Monday, October 24th, 2016
Use the PHP in the query below – and then the HTML example below to echo the URL out.
the_post_thumbnail_url(); // without parameter -> 'post-thumbnail'
the_post_thumbnail_url( 'thumbnail' ); // Thumbnail (default 150px x 150px max)
the_post_thumbnail_url( 'medium' ); // Medium resolution (default 300px x 300px max)
the_post_thumbnail_url( 'large' ); // Large resolution (default 640px x 640px max)
the_post_thumbnail_url( 'full' ); // Full resolution (original size uploaded)
the_post_thumbnail_url( array(100, 100) ); // Other resolutions
Tags: Echo, Query, Thumbnail, URL, WordPress
Posted in PHP, WordPress | No Comments »
Thursday, October 6th, 2016
Add to functions.php
// REMOVE WP EMOJI
remove_action('wp_head', 'print_emoji_detection_script', 7);
remove_action('wp_print_styles', 'print_emoji_styles');
remove_action( 'admin_print_scripts', 'print_emoji_detection_script' );
remove_action( 'admin_print_styles', 'print_emoji_styles' );
Tags: Emoji code, Functions, Header, PHP, WordPress
Posted in PHP, WordPress | No Comments »
Friday, September 30th, 2016
Add to functions.php file.
function ld_new_excerpt_more($more) {
global $post;
return '...';
}
add_filter('excerpt_more', 'ld_new_excerpt_more');
Tags: Ellipses, Excerpt, Functions, WordPress
Posted in PHP, WordPress | No Comments »
Friday, September 30th, 2016
Add this to the functions.php file.
add_theme_support( 'post-thumbnails' );
Tags: Functions, PHP, Support, Thumbnails, WordPress
Posted in PHP, WordPress | No Comments »
Friday, September 30th, 2016
Create a file named searchform.php and place this in the root of the theme folder. This will replace the default WordPress search form.
<form role="search" method="get" class="search-form" action="<?php echo home_url( '/' ); ?>">
<input type="text" placeholder="<?php echo esc_attr_x( 'Search website...', 'placeholder' ) ?>"
value="<?php echo get_search_query() ?>" name="s"
title="<?php echo esc_attr_x( 'Search for:', 'label' ) ?>"/>
</form>
Tags: Form, PHP, Replace, Search, Search form, WordPress
Posted in PHP, WordPress | No Comments »
Thursday, August 18th, 2016
Tags: Functions, Name, Query, Tax, Taxonomy, Term, Terms, WordPress
Posted in PHP, WordPress | No Comments »
Wednesday, August 17th, 2016
Get the current page ID and use that in the WordPress query to exclude that post from displaying.
<?php $currentID = get_the_ID();?>
<?php $args = array(
'post_type' => 'post',
'post__not_in' => array($currentID)
);
$query = new WP_Query($args);
$i = 1;
while ( $query->have_posts() ) : $query-> the_post(); ?>
Tags: Current ID, Exclude, PHP, Post__not_in, WordPress
Posted in PHP, WordPress | No Comments »
Tuesday, June 28th, 2016
Use to show content if a user is logged in.
<?php if ( is_user_logged_in() ) { ?>
.....Content here......
<?php } ?>
Use ! is_user_logged_in() if you want to show if NOT logged in.
Tags: Logged in, Logged out, PHP, User, WordPress
Posted in PHP, WordPress | No Comments »