:</strong>
						<?php 
        }
        ?>

						<a href="<?php 
        echo network_get_permalink();
        ?>
">
							<strong><?php 
        network_the_title();
        ?>
</strong>
						</a><br>
						<?php 
        $the_content = preg_replace("~(?:\\[/?)[^/\\]]+/?\\]~s", '', network_get_the_content());
        ?>
						<?php 
        echo $substr(strip_tags($the_content), 0, 250);
        ?>
 (<a href="<?php 
        echo network_get_permalink();
        ?>
"><?php 
        _e('More', 'globalsitesearch');
        ?>
</a>)
					</td>
				</tr>
			<?php 
    }
Example #2
0
function network_the_content($more_link_text = null, $stripteaser = false)
{
    $content = network_get_the_content($more_link_text, $stripteaser);
    $content = apply_filters('network_the_content', $content);
    $content = str_replace(']]>', ']]&gt;', $content);
    echo $content;
}