Estaba toqueteando un código y bueno, fallé en algo y ahora me da este error:
Parse error: syntax error, unexpected 'themetext' (T_STRING) in /homepages/39/d476671783/htdocs/wp-content/themes/simplemag/widgets/ti-featured-posts.php on line 21
Y éste es el código de las primeras 24 líneas.
¿Alguien sería tan amable de decirme si ve algún error? Gracias por adelantado.
<?php
/*
* Plugin Name: Featured Posts Widget
* Plugin URI: http://www.themesindep.com
* Description: A widget that show latest posts
* Version: 1.1
* Author: ThemesIndep
* Author URI: http://www.themesindep.com
*/
class TI_Featured_Posts extends WP_Widget {
/**
* Register widget
**/
public function __construct() {
parent::__construct(
'ti_featured_posts', // Base ID
__( 'TI Featured posts, themetext' ), // Name
array( 'description' => __( 'Show featured posts, defined in post edit page', 'themetext' ), ) // Args
);