Changing the code format for wordpress

First thing’s first, we need to get our globals. If you’re in The Loop you can remove the global $post in my code, if you’re outside The Loop $post may not be what you expect it to be. We’ll always need the global $userpro though. <?php global $userpro, $post; ?> <div class=”myrelatedauthor”> <a href=”https://wordpress.stackexchange.com/questions/180751/<?php echo … Read more

Calling PHP Titles inside Javascript Markup

First, don’t echo your php, but assemble everything in a string, let’s say $titlestring. Next, make this string available for access by the javascript (the slug is the one you used to register the script): $params = array ( ‘titlestring’ => $titlestring, ); wp_localize_script (‘your-script-slug’, ‘IframeTitle’, $params); Finally, access the variable in the script: ‘<div … Read more

Trim content without stripping formatting

Well, as far I understood you want to remove all the HTML tags from the trimmed the_content. Right??? Try wp_filter_nohtml_kses function. Hope that’s going to work. Here is the full code- <?php $trimmed = wp_filter_nohtml_kses( wp_trim_words( get_the_content(), 55, “” ) ); ?> <?php echo $trimmed; ?>

Formatting poetry in wordpress

I hope I’ve understood your question correctly. As you probably gathered, if you are in the visual editor, hitting return creates a new paragraph, but hitting Shift-return creates a line break. A couple of possible solutions: A very basic one. You should be able to make specific indents with a mixture of lines with line … Read more

WooCommerce product title formatting

Add Brand as taxonomy: if ( ! function_exists( ‘brand_tax’ ) ) { // Register Custom Taxonomy function brand_tax() { $labels = array( ‘name’ => _x( ‘Brands’, ‘Taxonomy General Name’, ‘text_domain’ ), ‘singular_name’ => _x( ‘Brand’, ‘Taxonomy Singular Name’, ‘text_domain’ ), ‘menu_name’ => __( ‘Brands’, ‘text_domain’ ), ‘all_items’ => __( ‘All brands’, ‘text_domain’ ), ‘parent_item’ => … Read more