How to make a text string into a bullet list [closed]

If your string is delimited by a comma , you can explode the string at this point into pieces (an array of items). If your string is separated by something else, such as spaces or | then explode that instead. <?php //assuming your string might look like: “USA, Canada, Japan, Russia” $countries = bp_member_profile_data( ‘field=Countries’ … Read more

Add thumbnails in ‘li’ list

If this is a post loop can’t you just put your images in li’s within the editor. Just select them and put them into a bulleted list.

Wrap Meta Box with and for each new line

Try: <li> <?php echo wpautop( $lyrics_1);?> </li> instead of this line: <?php echo “<li>\n”; wpautop( $lyrics_1) ; “</li>\n”; ?> edit: thanks @Toscho for the syntax edit, I made a hasty error in my earlier revision 😉

Output categories in something different than a list

Did you had a look at the Display Categories Assigned to a Post example in wp_list_categories in the Codex. This should give you a very good idea on how to modify your own code. This is just my simplistic way to achieve what you want. Feel free to modify as needed <?php $taxonomy = ‘category’; … Read more

How correct list-style displayed in firefox? [closed]

Replace “disk” with “disc” Here is some background: It has been reported, and they don’t want to fix it: https://bugzilla.mozilla.org/show_bug.cgi?id=1027647 based on a misinterpretation of: http://dev.w3.org/csswg/css-counter-styles-3/#extending-css2 Source

adding a #hash to each link in list_pages()?

I”d wrap it in a function (save it in functions.php); function wp_list_pages_with_hash( $hash, $args=”” ) { $add_hash = create_function( ‘$link’, ‘return $link . “#’ . $hash . ‘”;’ ); add_filter( ‘page_link’, $add_hash ); $result = wp_list_pages( $args ); remove_filter( ‘page_link’, $add_hash ); return $result; // back compat in case ‘echo’ was null } Then call … Read more