Lines:
1 to 57 of 57
<?php // (C) Copyright Bobbing Wide 2013-2022 /* function bw_format_as_required() – Format the post as specified by the user */ /* function bw_field_function() – Return the field function to invoke */ /* function bw_field_function_undefined() – Field format function for an unrecognised value */ /* function _bw_field_functions() – Return the array of field formatting functions */ /* function bw_field_function_title() – Format the title (format=T) */ /* function bw_field_function_image() – Format the ‘thumbnail’ image (format=I) */ /* function bw_field_function_featured_image() – Format the ‘thumbnail’ featured image (format=F) */ /* function bw_content() – Format the full content of a post */ /* function bw_field_function_content() – Format the content (format=C) */ /* function bw_field_function_excerpt() – Format the excerpt (format=E) */ /* function bw_field_function_readmore() – Format the "read more" link (format=R) */ /* function bw_field_function_more() – Format the "more" link (format=M) */ /* function bw_field_function_link() – Format the link (format=L) */ /* function bw_field_function_attachment() – Format links to the Attachment(s) (format=A) */ /* function bw_field_function_div() – Format a dummy div /ediv (format=/) */ /* function bw_field_function_nbsp() – Format a non-blank space */ /* function bw_field_function_metadata() – */ /* function bw_field_function_categories() – Format the Categories (format=c) */ /* function bw_field_function_comments() – Format the Comments count (format=o) */ /* function bw_field_function_tags() – Format the Tags (format=t ) */ /* function bw_field_function_author() – Format the Author (format=a ) */ /* function bw_field_function_date() – Format the Date (format=d) */ /* function bw_field_function_edit() – Format the Edit post link (format=e) */ /* function bw_format_block_start() – Format the starting HTML for the object */ /* function bw_format_block_end() – Format the ending HTML for the object */ /* * We should be able to survive with bw_default_sep and bw_format_sep being loaded from the bw_fields library. * So these functions are now longer required here. */View on GitHub View on Trac