Skip to content
View aishahenderson's full-sized avatar
:octocat:
Building websites
:octocat:
Building websites

Block or report aishahenderson

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. WPSearch Exclude Posts After a Speci... WPSearch Exclude Posts After a Specified Time Period During Initial Indexing
    1
    <?php
    2
    function my_searchwp_indexer_unindexed_args( $args ) {
    3
    	// TODO: customize $args in any way you'd like, see @link https://codex.wordpress.org/Template_Tags/get_posts
    4
      // Example 'after' => date('Y-m-d', strtotime('January 1, 2017' ))
    5
    	$args['date_query'] = array(
  2. WordPress Update and Save Post Dynam... WordPress Update and Save Post Dynamically
    1
    <?php
    2
    add_action( 'save_post',  'modify_post_content'  );
    3
    function modify_post_content( ) {
    4
    
                  
    5
    	$postArgs= array(