This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: Advanced Custom Fields: Gutenberg Blocks | |
* Plugin URI: https://www.n7studios.co.uk | |
* Version: 1.0.0 | |
* Author: n7 Studios | |
* Author URI: https://www.n7studios.co.uk | |
* Description: Example code to register Advanced Custom Field Groups as Blocks. Requires ACF 5.8+ | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Zoopla Average House Price Widget: Outcode Error</title> | |
</head> | |
<body> | |
<!-- | |
Steps to produce the below code: | |
1. Visit https://www.zoopla.co.uk/useful-tools/widgets/values/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: Page Generator Pro: Enable Meta Boxes | |
* Plugin URI: http://www.wpzinc.com/plugins/page-generator-pro | |
* Version: 1.0.0 | |
* Author: WP Zinc | |
* Author URI: http://www.wpzinc.com | |
* Description: Demonstrates how to enable custom and/or third party plugin meta boxes on Page Generator Pro Groups. See: https://www.wpzinc.com/documentation/page-generator-pro/developers-enable-meta-boxes/ | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: WP to Buffer Pro: Change URL | |
* Plugin URI: http://www.wpzinc.com/plugins/wp-to-buffer-pro | |
* Version: 1.0.0 | |
* Author: WP Zinc | |
* Author URI: http://www.wpzinc.com | |
* Description: Changes the {url} from your Post's URL to something else. Change code in this Plugin as necessary to define the URL you want. | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* For developers and themes which do not make use of the WordPress wp_list_comments() function, | |
* the below code can be added to output the dropdown options for sorting comments by rating. | |
* | |
* There must be a Field Group configured at Comment Rating Field Pro > Field Groups to display | |
* rating fields for the Post Type the visitor is viewing. | |
*/ | |
if ( function_exists( 'output_comment_sorting_dropdown' ) ) { | |
output_comment_sorting_dropdown( $post_id, $output_style ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* For developers who wish to get an array of Posts ordered by rating, highest to lowest, the | |
* below code can be used. | |
* | |
* @param array $args WP_Query compatible arguments | |
*/ | |
if ( function_exists( 'get_posts_ordered_by_rating' ) ) { | |
$posts = get_posts_ordered_by_rating( array( | |
'post_type' => 'post', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* For developers who want to directly access the numerical rating data for a Post, the below | |
* functions can be used. | |
*/ | |
/** | |
* Get the Post's Total Number of Ratings | |
* | |
* @param int $post_id Post ID |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* For developers and themes which do not make use of the WordPress wp_list_comments() function, | |
* the below code can be added. | |
* | |
* There must be a Field Group configured at Comment Rating Field Pro > Field Groups to display | |
* rating fields for the Post Type the visitor is viewing. | |
*/ | |
if ( function_exists( 'display_comment_rating' ) ) { | |
echo display_comment_rating( $comment_text, $post_id, $comment_id ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* For developers who want to display a Post's rating in a specific place, and do not wish to | |
* use Shortcodes, the below code can be used. | |
* | |
* There must be a Field Group configured at Comment Rating Field Pro > Field Groups to display | |
* rating fields for the Post Type of the Post ID specified. | |
*/ | |
if ( function_exists( 'display_average_rating' ) ) { | |
display_average_rating( array( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* For developers and themes which do not make use of the WordPress comment_form() function, | |
* the below code can be added to your theme's comment form. | |
* | |
* There must be a Field Group configured at Comment Rating Field Pro > Field Groups to display | |
* rating fields for the Post Type the visitor is viewing. | |
*/ | |
if ( function_exists( 'display_rating_fields' ) ) { | |
echo display_rating_fields(); |